diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-07-21 01:41:30 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-07-21 01:41:30 (GMT) |
commit | 87cc0c329e9a5181534a9ca9e283669986a32900 (patch) | |
tree | 7cd81d3e13cfb22edd7a02167ddaa00647ea8b1d /Lib/sre_compile.py | |
parent | 3332778f3537cf4c0230146831446aa838a4169e (diff) | |
download | cpython-87cc0c329e9a5181534a9ca9e283669986a32900.zip cpython-87cc0c329e9a5181534a9ca9e283669986a32900.tar.gz cpython-87cc0c329e9a5181534a9ca9e283669986a32900.tar.bz2 |
Whitespace normalization, plus:
+ test_quopri.py relied on significant trailing spaces. Fixed.
+ test_dircache.py (still) doesn't work on Windows (directory mtime on
Windows doesn't work like it does on Unix).
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 ba0a871..4dc11a1 100644 --- a/Lib/sre_compile.py +++ b/Lib/sre_compile.py @@ -286,7 +286,7 @@ def _optimize_unicode(charset, fixup): else: header.append(mapping[2*i]+256*mapping[2*i+1]) data[0:0] = header - return [(BIGCHARSET, data)] + return [(BIGCHARSET, data)] def _simple(av): # check if av is a "simple" operator |