diff options
author | Guido van Rossum <guido@python.org> | 1997-07-15 14:38:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-15 14:38:13 (GMT) |
commit | 04a1d74229058d204ce570e3727f438c31c1a176 (patch) | |
tree | d6f03b05ee10b228f6fe19d1df1304b0c0d33fb0 /Lib/test/re_tests.py | |
parent | 70f107f63ddf8be78bc985ba2892e615396b25d6 (diff) | |
download | cpython-04a1d74229058d204ce570e3727f438c31c1a176.zip cpython-04a1d74229058d204ce570e3727f438c31c1a176.tar.gz cpython-04a1d74229058d204ce570e3727f438c31c1a176.tar.bz2 |
Jeffrey's newest
Diffstat (limited to 'Lib/test/re_tests.py')
-rwxr-xr-x | Lib/test/re_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/re_tests.py b/Lib/test/re_tests.py index fc1fd57..a43b4ac 100755 --- a/Lib/test/re_tests.py +++ b/Lib/test/re_tests.py @@ -218,7 +218,7 @@ tests = [ 'found', 'multiple words'), ('(.*)c(.*)', 'abcde', SUCCEED, 'found+"-"+g1+"-"+g2', 'abcde-ab-de'), -('((.*), (.*))', '(a, b)', SUCCEED, +('\\((.*), (.*)\\)', '(a, b)', SUCCEED, 'g2+"-"+g1', 'b-a'), ('[k]', 'ab', FAIL), ('a[-]?c', 'ac', SUCCEED, |