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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -450,7 +450,8 @@ def test_condition_expression_with_dead_blocks_compiles(self):
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("""