mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +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
|
@ -4,6 +4,7 @@
|
|||
"""
|
||||
import sys
|
||||
import unittest
|
||||
import warnings
|
||||
from test import support
|
||||
from test.support import warnings_helper
|
||||
|
||||
|
@ -310,5 +311,11 @@ class CodeopTests(unittest.TestCase):
|
|||
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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue