[Python-checkins] python/dist/src/Lib/test test_peepholer.py, 1.6, 1.7

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Fri Jan 7 19:35:00 CET 2005


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

Modified Files:
	test_peepholer.py 
Log Message:
Remove test for BINARY_DIVIDE.

Index: test_peepholer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_peepholer.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- test_peepholer.py	2 Jan 2005 06:17:32 -0000	1.6
+++ test_peepholer.py	7 Jan 2005 18:34:56 -0000	1.7
@@ -109,7 +109,6 @@
             ('a="abc" + "def"', "('abcdef')"),      # check string ops
             ('a = 3**4', '(81)'),                   # binary power
             ('a = 3*4', '(12)'),                    # binary multiply
-            ('a = 13/4.0', '(3.25)'),               # binary divide
             ('a = 13//4', '(3)'),                   # binary floor divide
             ('a = 14%4', '(2)'),                    # binary modulo
             ('a = 2+3', '(5)'),                     # binary add



More information about the Python-checkins mailing list