[Python-checkins] python/dist/src/Lib/test test_binop.py,1.7,1.8

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sat Apr 30 07:50:21 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19751/Lib/test

Modified Files:
	test_binop.py 
Log Message:
Fix error in a docstring where a single quote started the docstring but triple
quote ended it.

Closes bug #1192777.  Thanks Christopher Smith.


Index: test_binop.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_binop.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- test_binop.py	23 Jul 2002 19:03:45 -0000	1.7
+++ test_binop.py	30 Apr 2005 05:50:19 -0000	1.8
@@ -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):



More information about the Python-checkins mailing list