diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2000-06-30 07:08:20 +0000 |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2000-06-30 07:08:20 +0000 |
commit | df02d0b3f0f438e6a773528010cc360d01b8f393 (patch) | |
tree | f4d45a0bbb9f268b6da56e013738d429e71f5054 /Lib/sre.py | |
parent | 47c60ec9a0dfabcccdfdeee9d3077f08423505bd (diff) | |
download | cpython-git-df02d0b3f0f438e6a773528010cc360d01b8f393.tar.gz |
- 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
diff --git a/Lib/sre.py b/Lib/sre.py index d5bb462e7b..fef4983e5c 100644 --- a/Lib/sre.py +++ b/Lib/sre.py @@ -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 |