diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2000-06-30 18:39:20 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2000-06-30 18:39:20 (GMT) |
commit | 4ccea94152599d7a80c01d5ebddb70f5abf3ce21 (patch) | |
tree | a60ad484768f718d6dddc89d311486a882f39205 /Lib/sre_compile.py | |
parent | 1739be50cb39627c8e6deca7c395854559ba655e (diff) | |
download | cpython-4ccea94152599d7a80c01d5ebddb70f5abf3ce21.zip cpython-4ccea94152599d7a80c01d5ebddb70f5abf3ce21.tar.gz cpython-4ccea94152599d7a80c01d5ebddb70f5abf3ce21.tar.bz2 |
- reverted to "\x is binary byte"
- removed evil tabs from sre_parse and sre_compile
Diffstat (limited to 'Lib/sre_compile.py')
-rw-r--r-- | Lib/sre_compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sre_compile.py b/Lib/sre_compile.py index e48a7eb..6c7e588 100644 --- a/Lib/sre_compile.py +++ b/Lib/sre_compile.py @@ -39,7 +39,7 @@ def _compile(code, pattern, flags): return _sre.getlower(literal, flags) else: emit(OPCODES[op]) - fixup = lambda x: x + fixup = lambda x: x skip = len(code); emit(0) for op, av in av: emit(OPCODES[op]) |