mirror of
https://github.com/python/cpython.git
synced 2025-11-01 22:21:35 +00:00
bpo-41520: codeop no longer ignores SyntaxWarning (GH-21838)
This commit is contained in:
parent
0e95bbf085
commit
369a1cbdee
3 changed files with 12 additions and 2 deletions
|
|
@ -84,9 +84,11 @@ def _maybe_compile(compiler, source, filename, symbol):
|
|||
except SyntaxError:
|
||||
pass
|
||||
|
||||
# Suppress warnings after the first compile to avoid duplication.
|
||||
# Catch syntax warnings after the first compile
|
||||
# to emit SyntaxWarning at most once.
|
||||
with warnings.catch_warnings():
|
||||
warnings.simplefilter("ignore")
|
||||
warnings.simplefilter("error", SyntaxWarning)
|
||||
|
||||
try:
|
||||
code1 = compiler(source + "\n", filename, symbol)
|
||||
except SyntaxError as e:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue