summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-03-22 09:44:47 (GMT)
committerGitHub <noreply@github.com>2022-03-22 09:44:47 (GMT)
commitc6cd3cc93c40363ce704d34a70e6fb73ea1d97a3 (patch)
treee1443085b290766bc1aa68e95aae302ffbd03728 /Doc/whatsnew
parent4f97d64c831c94660ceb01f34d51fa236ad968b0 (diff)
downloadcpython-c6cd3cc93c40363ce704d34a70e6fb73ea1d97a3.zip
cpython-c6cd3cc93c40363ce704d34a70e6fb73ea1d97a3.tar.gz
cpython-c6cd3cc93c40363ce704d34a70e6fb73ea1d97a3.tar.bz2
bpo-47081: Replace "qualifiers" with "quantifiers" in the re module documentation (GH-32028)
It is a more commonly used term.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.11.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index ca7699d..96db3a9 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -298,7 +298,7 @@ os
re
--
-* Atomic grouping (``(?>...)``) and possessive qualifiers (``*+``, ``++``,
+* Atomic grouping (``(?>...)``) and possessive quantifiers (``*+``, ``++``,
``?+``, ``{m,n}+``) are now supported in regular expressions.
(Contributed by Jeffrey C. Jacobs and Serhiy Storchaka in :issue:`433030`.)