(original) (raw)

changeset: 82243:a80ea934da9a branch: 2.7 parent: 82231:23393309d7a6 user: Serhiy Storchaka storchaka@gmail.com date: Mon Feb 18 11:14:04 2013 +0200 files: Lib/sre_constants.py description: Fix issue #13169: Reimport MAXREPEAT into sre_constants.py. diff -r 23393309d7a6 -r a80ea934da9a Lib/sre_constants.py --- a/Lib/sre_constants.py Sat Feb 16 21:40:16 2013 +0100 +++ b/Lib/sre_constants.py Mon Feb 18 11:14:04 2013 +0200 @@ -15,6 +15,8 @@ MAGIC = 20031017 +from _sre import MAXREPEAT + # SRE standard exception (access as sre.error) # should this really be here? /storchaka@gmail.com