summaryrefslogtreecommitdiff
path: root/Lib/sre_constants.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-29 22:49:23 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-29 22:49:23 +0300
commit9baa5b2de2e1bd4d56791de8144f737f65b89c74 (patch)
tree59cff121a4d2becfe389a825f1e2b66e8a839c45 /Lib/sre_constants.py
parentc31e6227f94c2bb0290336c739873173672a8991 (diff)
downloadcpython-git-9baa5b2de2e1bd4d56791de8144f737f65b89c74.tar.gz
Issue #22437: Number of capturing groups in regular expression is no longer
limited by 100.
Diffstat (limited to 'Lib/sre_constants.py')
-rw-r--r--Lib/sre_constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sre_constants.py b/Lib/sre_constants.py
index 23e3516006..8815d1d487 100644
--- a/Lib/sre_constants.py
+++ b/Lib/sre_constants.py
@@ -15,7 +15,7 @@
MAGIC = 20031017
-from _sre import MAXREPEAT
+from _sre import MAXREPEAT, MAXGROUPS
# SRE standard exception (access as sre.error)
# should this really be here?