8000 bpo-433030: Add support of atomic grouping in regular expressions by serhiy-storchaka · Pull Request #31982 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-433030: Add support of atomic grouping in regular expressions #31982

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Mar 21, 2022
Merged
Prev Previous commit
Next Next commit
Fix incorrect use of the term role.
  • Loading branch information
serhiy-storchaka committed Mar 19, 2022
commit 599109c57346d706d82dc02acac21d6311c949b8
5 changes: 2 additions & 3 deletions Doc/whatsnew/3.11.rst
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,8 @@ os
re
--

* :term:`Atomic grouping <atomic group>` (``(?>...)``) and :term:`possessive`
qualifiers (``*+``, ``++``, ``?+``, ``{m,n}+``) are now supported in regular
expressions.
* Atomic grouping (``(?>...)``) and possessive qualifiers (``*+``, ``++``,
``?+``, ``{m,n}+``) are now supported in regular expressions.
(Contributed by Jeffrey C. Jacobs and Serhiy Storchaka in :issue:`433030`.)

shutil
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
Add support of :term:`atomic grouping <atomic group>` (``(?>...)``) and
:term:`possessive` qualifiers (``*+``, ``++``, ``?+``, ``{m,n}+``) in
:mod:`regular expressions <re>`.
Add support of atomic grouping (``(?>...)``) and possessive qualifiers
(``*+``, ``++``, ``?+``, ``{m,n}+``) in :mod:`regular expressions <re>`.
0