summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2005-04-30 05:50:19 (GMT)
committerBrett Cannon <bcannon@gmail.com>2005-04-30 05:50:19 (GMT)
commit53e9a8b9f3ce1514e2106c8a9eff713f84fc42c5 (patch)
tree3db068bdd5c5a192a7b1db698d09f7051fcc2f39 /Lib
parentebbffd42f3d96f93b7334ce1c5ea2e6da0a0754f (diff)
downloadcpython-53e9a8b9f3ce1514e2106c8a9eff713f84fc42c5.zip
cpython-53e9a8b9f3ce1514e2106c8a9eff713f84fc42c5.tar.gz
cpython-53e9a8b9f3ce1514e2106c8a9eff713f84fc42c5.tar.bz2
Fix error in a docstring where a single quote started the docstring but triple
quote ended it. Closes bug #1192777. Thanks Christopher Smith.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_binop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_binop.py b/Lib/test/test_binop.py
index 1a42289..b3d9a62 100644
--- a/Lib/test/test_binop.py
+++ b/Lib/test/test_binop.py
@@ -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):