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

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sat Apr 30 07:52:16 CEST 2005


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

Modified Files:
      Tag: release24-maint
	test_binop.py 
Log Message:
Fix a docstring with mismatched opening and closing quotes.

Backport of fix for bug #1192777.


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