diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2000-06-30 07:08:20 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2000-06-30 07:08:20 (GMT) |
commit | df02d0b3f0f438e6a773528010cc360d01b8f393 (patch) | |
tree | f4d45a0bbb9f268b6da56e013738d429e71f5054 /Lib/sre.py | |
parent | 47c60ec9a0dfabcccdfdeee9d3077f08423505bd (diff) | |
download | cpython-df02d0b3f0f438e6a773528010cc360d01b8f393.zip cpython-df02d0b3f0f438e6a773528010cc360d01b8f393.tar.gz cpython-df02d0b3f0f438e6a773528010cc360d01b8f393.tar.bz2 |
- fixed default value handling in group/groupdict
- added test suite
Diffstat (limited to 'Lib/sre.py')
-rw-r--r-- | Lib/sre.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ M = MULTILINE = sre_compile.SRE_FLAG_MULTILINE S = DOTALL = sre_compile.SRE_FLAG_DOTALL X = VERBOSE = sre_compile.SRE_FLAG_VERBOSE -# sre extensions (may or may not be in 1.6 final) +# sre extensions (may or may not be in 2.0 final) T = TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE U = UNICODE = sre_compile.SRE_FLAG_UNICODE |