diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-18 09:14:21 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-18 09:14:21 (GMT) |
commit | 9acb9bc65914a890a5ec2181e2237bd8dc826409 (patch) | |
tree | 589c89071d9c0822831df792616e2b6192f47441 /Lib/sre_constants.py | |
parent | fa4681691591429466d18e21d7640e3703ab7f28 (diff) | |
download | cpython-9acb9bc65914a890a5ec2181e2237bd8dc826409.zip cpython-9acb9bc65914a890a5ec2181e2237bd8dc826409.tar.gz cpython-9acb9bc65914a890a5ec2181e2237bd8dc826409.tar.bz2 |
Fix issue #13169: Reimport MAXREPEAT into sre_constants.py.
Diffstat (limited to 'Lib/sre_constants.py')
-rw-r--r-- | Lib/sre_constants.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/sre_constants.py b/Lib/sre_constants.py index 71ccb23..5898d54 100644 --- a/Lib/sre_constants.py +++ b/Lib/sre_constants.py @@ -15,6 +15,8 @@ MAGIC = 20031017 +from _sre import MAXREPEAT + # SRE standard exception (access as sre.error) # should this really be here? |