diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-09-20 18:24:39 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-09-20 18:24:39 (GMT) |
| commit | c8bf95cfc58d92c365abd4c958feb15f872b2a29 (patch) | |
| tree | 5e7bf254c839c1b018a01f52c5875fca8cd54525 /Lib/sre_parse.py | |
| parent | 2a97cee5eda632a7737bf01608c0f6638cd3fea0 (diff) | |
| download | cpython-c8bf95cfc58d92c365abd4c958feb15f872b2a29.zip cpython-c8bf95cfc58d92c365abd4c958feb15f872b2a29.tar.gz cpython-c8bf95cfc58d92c365abd4c958feb15f872b2a29.tar.bz2 | |
Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0
binaries.
Diffstat (limited to 'Lib/sre_parse.py')
| -rw-r--r-- | Lib/sre_parse.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/sre_parse.py b/Lib/sre_parse.py index f26229f..8a77790 100644 --- a/Lib/sre_parse.py +++ b/Lib/sre_parse.py @@ -15,7 +15,6 @@ import sys from sre_constants import * -from _sre import MAXREPEAT SPECIAL_CHARS = ".\\[{()*+?^$|" REPEAT_CHARS = "*+?{" |
