]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a docstring with mismatched opening and closing quotes.
authorBrett Cannon <bcannon@gmail.com>
Sat, 30 Apr 2005 05:51:59 +0000 (05:51 +0000)
committerBrett Cannon <bcannon@gmail.com>
Sat, 30 Apr 2005 05:51:59 +0000 (05:51 +0000)
Backport of fix for bug #1192777.

Lib/test/test_binop.py

index 1a4228928b1d3bd00005cc2cd1f78dc5705f8ec8..b3d9a625ffe92beb77b61c6f61de7751fd38bb84 100644 (file)
@@ -178,7 +178,7 @@ class Rat(object):
         return (x, self - other * x)
 
     def __rdivmod__(self, other):
-        "Divide two Rats, returning quotient and remainder (reversed args)."""
+        """Divide two Rats, returning quotient and remainder (reversed args)."""
         if isint(other):
             other = Rat(other)
         elif not isRat(other):