From 53fa7ee78273f01b3b8ba9ccc2ab0ec531f2e42e Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sat, 30 Apr 2005 05:51:59 +0000 Subject: [PATCH] Fix a docstring with mismatched opening and closing quotes. Backport of fix for bug #1192777. --- Lib/test/test_binop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_binop.py b/Lib/test/test_binop.py index 1a4228928b1d..b3d9a625ffe9 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): -- 2.47.3