summaryrefslogtreecommitdiff
path: root/Lib/sre_compile.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-09-20 21:24:39 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2013-09-20 21:24:39 +0300
commitc8bf95cfc58d92c365abd4c958feb15f872b2a29 (patch)
tree5e7bf254c839c1b018a01f52c5875fca8cd54525 /Lib/sre_compile.py
parent2a97cee5eda632a7737bf01608c0f6638cd3fea0 (diff)
downloadcpython-git-c8bf95cfc58d92c365abd4c958feb15f872b2a29.tar.gz
Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0
binaries.
Diffstat (limited to 'Lib/sre_compile.py')
-rw-r--r--Lib/sre_compile.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/sre_compile.py b/Lib/sre_compile.py
index 9f59c770dc..b6b377f25b 100644
--- a/Lib/sre_compile.py
+++ b/Lib/sre_compile.py
@@ -13,7 +13,6 @@
import _sre, sys
import sre_parse
from sre_constants import *
-from _sre import MAXREPEAT
assert _sre.MAGIC == MAGIC, "SRE module mismatch"