except SyntaxError as err:
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:
Nick Mathewson
"""
import unittest
+import warnings
from test import support
from codeop import compile_command, PyCF_DONT_IMPLY_DEDENT
compile_command("0 is 0")
self.assertEqual(len(w.warnings), 1)
+ # bpo-41520: check SyntaxWarning treated as an SyntaxError
+ with self.assertRaises(SyntaxError):
+ warnings.simplefilter('error', SyntaxWarning)
+ compile_command('1 is 1\n', symbol='exec')
+
+
if __name__ == "__main__":
unittest.main()