Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 53e9a8b

Browse files
committed
Fix error in a docstring where a single quote started the docstring but triple
quote ended it. Closes bug #1192777. Thanks Christopher Smith.
1 parent ebbffd4 commit 53e9a8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_binop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def __divmod__(self, other):
178178
return (x, self - other * x)
179179

180180
def __rdivmod__(self, other):
181-
"Divide two Rats, returning quotient and remainder (reversed args)."""
181+
"""Divide two Rats, returning quotient and remainder (reversed args)."""
182182
if isint(other):
183183
other = Rat(other)
184184
elif not isRat(other):

0 commit comments

Comments
 (0)