diff options
author | Raymond Hettinger <python@rcn.com> | 2005-01-07 18:34:56 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-01-07 18:34:56 (GMT) |
commit | 922b3e2098d9903d915aa7ce19d8e3c8973643d0 (patch) | |
tree | e8eb66afdea816a8e4873da81c0f2d13cbf797d3 /Lib | |
parent | 664b43b3f4cbb7a63d5d67117e1d040a286af371 (diff) | |
download | cpython-922b3e2098d9903d915aa7ce19d8e3c8973643d0.zip cpython-922b3e2098d9903d915aa7ce19d8e3c8973643d0.tar.gz cpython-922b3e2098d9903d915aa7ce19d8e3c8973643d0.tar.bz2 |
Remove test for BINARY_DIVIDE.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_peepholer.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py index a0031f2..4222424 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 |