summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-02-09 20:07:38 (GMT)
committerGitHub <noreply@github.com>2021-02-09 20:07:38 (GMT)
commitdbb228189b4eb7ab41f326eb79dae669b2c81177 (patch)
treec4338eabaed5b9ece25fda84b4ca035283f1466a /Misc
parentb74396c3167cc780f01309148db02709bc37b432 (diff)
downloadcpython-dbb228189b4eb7ab41f326eb79dae669b2c81177.zip
cpython-dbb228189b4eb7ab41f326eb79dae669b2c81177.tar.gz
cpython-dbb228189b4eb7ab41f326eb79dae669b2c81177.tar.bz2
bpo-43163: Handle unclosed parentheses in codeop (GH-24483)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-02-08-21-13-51.bpo-43163.E2MgzH.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-02-08-21-13-51.bpo-43163.E2MgzH.rst b/Misc/NEWS.d/next/Library/2021-02-08-21-13-51.bpo-43163.E2MgzH.rst
new file mode 100644
index 0000000..ddd60ea
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-02-08-21-13-51.bpo-43163.E2MgzH.rst
@@ -0,0 +1,2 @@
+Fix a bug in :mod:`codeop` that was causing it to not ask for more input
+when multi-line snippets have unclosed parentheses. Patch by Pablo Galindo