aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2022-02-10 03:37:17 +0000
committerGitHub <noreply@github.com>2022-02-10 03:37:17 +0000
commitb71dc71905ab674ccaa4a56230d17a28f61c325c (patch)
treeec6148ebc665d0beecc006afd4f6fea6b7139b9a /Misc
parentcb68788dcadf43b47292bab7816a5ed9efa69730 (diff)
downloadcpython3-b71dc71905ab674ccaa4a56230d17a28f61c325c.tar.gz
bpo-46707: Avoid potential exponential backtracking in some syntax errors (GH-31241)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-02-10-03-13-18.bpo-46707.xeSEh0.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-02-10-03-13-18.bpo-46707.xeSEh0.rst b/Misc/NEWS.d/next/Core and Builtins/2022-02-10-03-13-18.bpo-46707.xeSEh0.rst
new file mode 100644
index 0000000000..4b156c4d5f
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-02-10-03-13-18.bpo-46707.xeSEh0.rst
@@ -0,0 +1,2 @@
+Avoid potential exponential backtracking when producing some syntax errors
+involving lots of brackets. Patch by Pablo Galindo.