(original) (raw)

changeset: 82244:a6231ed7bff4 branch: 3.2 parent: 82227:d40afd489b6a user: Serhiy Storchaka storchaka@gmail.com date: Mon Feb 18 11:14:21 2013 +0200 files: Lib/sre_constants.py description: Fix issue #13169: Reimport MAXREPEAT into sre_constants.py. diff -r d40afd489b6a -r a6231ed7bff4 Lib/sre_constants.py --- a/Lib/sre_constants.py Sat Feb 16 21:23:53 2013 +0200 +++ b/Lib/sre_constants.py Mon Feb 18 11:14:21 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