summaryrefslogtreecommitdiff
path: root/Lib/test/test_peepholer.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2005-01-07 18:34:56 +0000
committerRaymond Hettinger <python@rcn.com>2005-01-07 18:34:56 +0000
commit9808d6f02aedbfa19d2c922c6844623767930bd2 (patch)
treef672571eb7780b241aa6bef21c27ae9f1f8242c9 /Lib/test/test_peepholer.py
parent0b94bc5747110428d0055c0add08561c09a471c6 (diff)
downloadcpython-9808d6f02aedbfa19d2c922c6844623767930bd2.tar.gz
Remove test for BINARY_DIVIDE.
Diffstat (limited to 'Lib/test/test_peepholer.py')
-rw-r--r--Lib/test/test_peepholer.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py
index a0031f2156..42224244ef 100644
--- a/Lib/test/test_peepholer.py
+++ b/Lib/test/test_peepholer.py
@@ -109,7 +109,6 @@ class TestTranforms(unittest.TestCase):
('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