gh-113932: assert `SyntaxWarning` in test_compile.TestSpecifics.test_… (#113933)

This commit is contained in:
Kirill Podoprigora
2024-01-11 14:25:07 +03:00
committed by GitHub
parent ec23e90082
commit 9f088336b2
+2 -1
View File
@@ -450,7 +450,8 @@ class TestSpecifics(unittest.TestCase):
def test_condition_expression_with_redundant_comparisons_compiles(self):
# See gh-113054
compile('if 9<9<9and 9or 9:9', '<eval>', 'exec')
with self.assertWarns(SyntaxWarning):
compile('if 9<9<9and 9or 9:9', '<eval>', 'exec')
def test_dead_code_with_except_handler_compiles(self):
compile(textwrap.dedent("""