[Python-checkins] r43277 - python/trunk/Lib/test/test_augassign.py

neal.norwitz python-checkins at python.org
Fri Mar 24 08:30:57 CET 2006


Author: neal.norwitz
Date: Fri Mar 24 08:30:56 2006
New Revision: 43277

Modified:
   python/trunk/Lib/test/test_augassign.py
Log:
Hmmm, I don't think we wanted to test // twice and / not at all (in this section).

Modified: python/trunk/Lib/test/test_augassign.py
==============================================================================
--- python/trunk/Lib/test/test_augassign.py	(original)
+++ python/trunk/Lib/test/test_augassign.py	Fri Mar 24 08:30:56 2006
@@ -5,7 +5,7 @@
 x *= 2
 x **= 2
 x -= 8
-x //= 2
+x /= 2
 x //= 1
 x %= 12
 x &= 2
@@ -19,7 +19,7 @@
 x[0] *= 2
 x[0] **= 2
 x[0] -= 8
-x[0] //= 2
+x[0] /= 2
 x[0] //= 2
 x[0] %= 12
 x[0] &= 2
@@ -33,7 +33,7 @@
 x[0] *= 2
 x[0] **= 2
 x[0] -= 8
-x[0] //= 2
+x[0] /= 2
 x[0] //= 1
 x[0] %= 12
 x[0] &= 2


More information about the Python-checkins mailing list