diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-18 09:23:10 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-18 09:23:10 (GMT) |
commit | 580e2c1a65334cf702290e9a789670828e4673ee (patch) | |
tree | f92fb563cff47787816948de1eee7b9a86107094 /Lib | |
parent | 597ba7e351eac57b6e7adc34b154285c5cc6fdc0 (diff) | |
parent | f844f7e361bd23358d511bb74c71b01c5207e191 (diff) | |
download | cpython-580e2c1a65334cf702290e9a789670828e4673ee.zip cpython-580e2c1a65334cf702290e9a789670828e4673ee.tar.gz cpython-580e2c1a65334cf702290e9a789670828e4673ee.tar.bz2 |
Fix issue #13169: Reimport MAXREPEAT into sre_constants.py.
Diffstat (limited to 'Lib')
-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? |