diff --git a/Lib/test/test_binop.py b/Lib/test/test_binop.py index 1a4228928b1..b3d9a625ffe 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):