summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2020-08-13 18:21:32 (GMT)
committerGitHub <noreply@github.com>2020-08-13 18:21:32 (GMT)
commitf24430f1542ea2768793b48704ae2d4e241892ae (patch)
tree95e64fdf16a26bbc775648f974a687a902135cf6 /Misc
parentb3ad2ca56afc6a56c9a6e7b419bc05e8e5b15e19 (diff)
downloadcpython-f24430f1542ea2768793b48704ae2d4e241892ae.zip
cpython-f24430f1542ea2768793b48704ae2d4e241892ae.tar.gz
cpython-f24430f1542ea2768793b48704ae2d4e241892ae.tar.bz2
[3.9] bpo-41520: Fix second codeop regression (GH-21848)
Fix the repression introduced by the initial regression fix. (cherry picked from commit c818b15fa59039de67022c29085d439fa5d3ef95) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-08-12-13-25-16.bpo-41520.BEUWa4.rst2
1 files changed, 1 insertions, 1 deletions
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
index ca5501c..0e140d9 100644
--- 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
@@ -1 +1 @@
-Fix :mod:`codeop` regression: it no longer ignores :exc:`SyntaxWarning`.
+Fix :mod:`codeop` regression that prevented turning compile warnings into errors.