summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-03-21 11:00:43 (GMT)
committerGitHub <noreply@github.com>2022-03-21 11:00:43 (GMT)
commit08eb754d840696914928355014c2d424131f8835 (patch)
tree771f37280160528278969ac71f179cba18eefa94 /Misc
parente63894b3eed8ad2dd7690695f7f07bfbff59c05a (diff)
downloadcpython-08eb754d840696914928355014c2d424131f8835.zip
cpython-08eb754d840696914928355014c2d424131f8835.tar.gz
cpython-08eb754d840696914928355014c2d424131f8835.tar.bz2
bpo-23691: Protect the re.finditer() iterator from re-entering (GH-32012)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-03-20-22-13-24.bpo-23691.Nc2TrW.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-03-20-22-13-24.bpo-23691.Nc2TrW.rst b/Misc/NEWS.d/next/Library/2022-03-20-22-13-24.bpo-23691.Nc2TrW.rst
new file mode 100644
index 0000000..053a2b2
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-03-20-22-13-24.bpo-23691.Nc2TrW.rst
@@ -0,0 +1 @@
+Protect the :func:`re.finditer` iterator from re-entering.