summaryrefslogtreecommitdiffstats
path: root/Lib/sre.py
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2000-06-30 07:08:20 (GMT)
committerFredrik Lundh <fredrik@pythonware.com>2000-06-30 07:08:20 (GMT)
commitdf02d0b3f0f438e6a773528010cc360d01b8f393 (patch)
treef4d45a0bbb9f268b6da56e013738d429e71f5054 /Lib/sre.py
parent47c60ec9a0dfabcccdfdeee9d3077f08423505bd (diff)
downloadcpython-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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sre.py b/Lib/sre.py
index d5bb462..fef4983 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