]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41520: codeop no longer ignores SyntaxWarning (GH-21838)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 12 Aug 2020 13:13:09 +0000 (06:13 -0700)
committerGitHub <noreply@github.com>
Wed, 12 Aug 2020 13:13:09 +0000 (06:13 -0700)
(cherry picked from commit 369a1cbdee14d9f27356fb3a8bb21e4fde289d25)

Co-authored-by: Victor Stinner <vstinner@python.org>
Lib/codeop.py
Lib/test/test_codeop.py
Misc/NEWS.d/next/Library/2020-08-12-13-25-16.bpo-41520.BEUWa4.rst [new file with mode: 0644]

index 7e192ea6a10a03af56f62ef4b2157505a58f4028..547629262d06892cd36d7423403d849691b676bf 100644 (file)
@@ -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:
index 45cb1a7b74e9036dcf95ba5ce7874adc83459e5a..72840cae1d9e983e07a019b3c1e4e9fa851e7881 100644 (file)
@@ -4,6 +4,7 @@
 """
 import sys
 import unittest
+import warnings
 from test import support
 
 from codeop import compile_command, PyCF_DONT_IMPLY_DEDENT
@@ -309,5 +310,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()
diff --git a/Misc/NEWS.d/next/Library/2020-08-12-13-25-16.bpo-41520.BEUWa4.rst b/Misc/NEWS.d/next/Library/2020-08-12-13-25-16.bpo-41520.BEUWa4.rst
new file mode 100644 (file)
index 0000000..ca5501c
--- /dev/null
@@ -0,0 +1 @@
+Fix :mod:`codeop` regression: it no longer ignores :exc:`SyntaxWarning`.