diff options
author | Victor Stinner <vstinner@python.org> | 2020-08-12 12:53:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-12 12:53:28 (GMT) |
commit | 369a1cbdee14d9f27356fb3a8bb21e4fde289d25 (patch) | |
tree | a55ddcc06858a1c3ad0f2680f2810586e9a168da /Misc | |
parent | 0e95bbf08571e98f4b688524efc2dcf20d315d91 (diff) | |
download | cpython-369a1cbdee14d9f27356fb3a8bb21e4fde289d25.zip cpython-369a1cbdee14d9f27356fb3a8bb21e4fde289d25.tar.gz cpython-369a1cbdee14d9f27356fb3a8bb21e4fde289d25.tar.bz2 |
bpo-41520: codeop no longer ignores SyntaxWarning (GH-21838)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-08-12-13-25-16.bpo-41520.BEUWa4.rst | 1 |
1 files changed, 1 insertions, 0 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 new file mode 100644 index 0000000..ca5501c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-08-12-13-25-16.bpo-41520.BEUWa4.rst @@ -0,0 +1 @@ +Fix :mod:`codeop` regression: it no longer ignores :exc:`SyntaxWarning`. |