mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Remove test for BINARY_DIVIDE.
This commit is contained in:
parent
664b43b3f4
commit
922b3e2098
1 changed files with 0 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue