summaryrefslogtreecommitdiffstats
path: root/Lib/re.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-07-28 19:04:07 (GMT)
committerGuido van Rossum <guido@python.org>2002-07-28 19:04:07 (GMT)
commitad9eba7a695804e7ee4e4ac6619b81a2baa15958 (patch)
tree081a860d61784713c4d7bd8cfebdcbbe5dae5d97 /Lib/re.py
parent301b1cd1072423a2b424fff9307e94e75aeb82a8 (diff)
downloadcpython-ad9eba7a695804e7ee4e4ac6619b81a2baa15958.zip
cpython-ad9eba7a695804e7ee4e4ac6619b81a2baa15958.tar.gz
cpython-ad9eba7a695804e7ee4e4ac6619b81a2baa15958.tar.bz2
Add 'engine' back. IDLE used this, others might have copied it from
there.
Diffstat (limited to 'Lib/re.py')
-rw-r--r--Lib/re.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/re.py b/Lib/re.py
index a786593..efc1ded 100644
--- a/Lib/re.py
+++ b/Lib/re.py
@@ -16,5 +16,7 @@
# thanks /F
#
+engine = "sre" # Some apps might use this undocumented variable
+
from sre import *
from sre import __all__