diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-11-18 11:43:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-18 11:43:44 (GMT) |
commit | f9c5573dedcb2f2e9ae152672ce157987cdea612 (patch) | |
tree | 9c65e6d8d719e45951d2d55bd5da72f60c93fc8e /Misc/NEWS.d/next/Library | |
parent | 7538e7f5696408fa0aa02fce8a413a7dfac76a04 (diff) | |
download | cpython-f9c5573dedcb2f2e9ae152672ce157987cdea612.zip cpython-f9c5573dedcb2f2e9ae152672ce157987cdea612.tar.gz cpython-f9c5573dedcb2f2e9ae152672ce157987cdea612.tar.bz2 |
gh-101955: Fix SystemError in possesive quantifier with alternative and group (GH-111362)
Co-authored-by: <wjssz@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d/next/Library')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-10-26-16-36-22.gh-issue-101955.Ixu3IF.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-10-26-16-36-22.gh-issue-101955.Ixu3IF.rst b/Misc/NEWS.d/next/Library/2023-10-26-16-36-22.gh-issue-101955.Ixu3IF.rst new file mode 100644 index 0000000..8943101 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-10-26-16-36-22.gh-issue-101955.Ixu3IF.rst @@ -0,0 +1,2 @@ +Fix SystemError when match regular expression pattern containing some +combination of possessive quantifier, alternative and capture group. |