Issue #21422: Add a test to check that bool << int and bool >> int return an int

This commit is contained in:
Victor Stinner 2014-05-12 22:35:40 +02:00
parent bf88ffba5e
commit 7fe1049fcb
1 changed files with 7 additions and 0 deletions

View File

@ -1235,6 +1235,13 @@ class LongTest(unittest.TestCase):
for n in map(int, integers):
self.assertEqual(n, 0)
def test_shift_bool(self):
# Issue #21422: ensure that bool << int and bool >> int return int
for value in (True, False):
for shift in (0, 2):
self.assertEqual(type(value << shift), int)
self.assertEqual(type(value >> shift), int)
def test_main():
support.run_unittest(LongTest)