diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-03-21 11:00:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-21 11:00:43 (GMT) |
commit | 08eb754d840696914928355014c2d424131f8835 (patch) | |
tree | 771f37280160528278969ac71f179cba18eefa94 /Misc | |
parent | e63894b3eed8ad2dd7690695f7f07bfbff59c05a (diff) | |
download | cpython-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.rst | 1 |
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. |