diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2001-02-18 12:05:16 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2001-02-18 12:05:16 (GMT) |
commit | f2989b22fff921b3394e1709a07f0119370b6d74 (patch) | |
tree | e7d820eea66d169e543ac117631694d3afbccbcd /Lib/sre_compile.py | |
parent | ae7636753e15273742515eb123999d23f6b7985e (diff) | |
download | cpython-f2989b22fff921b3394e1709a07f0119370b6d74.zip cpython-f2989b22fff921b3394e1709a07f0119370b6d74.tar.gz cpython-f2989b22fff921b3394e1709a07f0119370b6d74.tar.bz2 |
- restored 1.5.2 compatibility (sorry, eric)
- removed __all__ cruft from internal modules (sorry, skip)
- don't assume ASCII for string escapes (sorry, per)
Diffstat (limited to 'Lib/sre_compile.py')
-rw-r--r-- | Lib/sre_compile.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/sre_compile.py b/Lib/sre_compile.py index 18dee88..ab2a2cc 100644 --- a/Lib/sre_compile.py +++ b/Lib/sre_compile.py @@ -12,8 +12,6 @@ import _sre from sre_constants import * -__all__ = ["compile"] - assert _sre.MAGIC == MAGIC, "SRE module mismatch" MAXCODE = 65535 |