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
1 changed files with 2 additions and 1 deletions

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("""