Fix error in a docstring where a single quote started the docstring but triple
quote ended it.

Closes bug #1192777.  Thanks Christopher Smith.
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 @@
         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):