diff options
author | Guido van Rossum <guido@python.org> | 1997-07-15 15:40:57 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-15 15:40:57 (GMT) |
commit | 847ed4afb57a4d5449e6a28de13dcb5d8f9840fb (patch) | |
tree | d8fdbfa0e6e955f2628da0333c34f05fcc44737c /Lib/test/re_tests.py | |
parent | 531097502cc549a8ec5bbe29c90e7b8850cbff24 (diff) | |
download | cpython-847ed4afb57a4d5449e6a28de13dcb5d8f9840fb.zip cpython-847ed4afb57a4d5449e6a28de13dcb5d8f9840fb.tar.gz cpython-847ed4afb57a4d5449e6a28de13dcb5d8f9840fb.tar.bz2 |
More tweaks; re.py is nearly there...
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 a43b4ac..393e2b2 100755 --- a/Lib/test/re_tests.py +++ b/Lib/test/re_tests.py @@ -136,7 +136,7 @@ tests = [ ('()ef', 'def', SUCCEED, 'found+"-"+g1', 'ef-'), ('$b', 'b', FAIL), -('a(b', 'a(b', SUCCEED, +('a\\(b', 'a(b', SUCCEED, 'found+"-"+g1', 'a(b-None'), ('a\\(*b', 'ab', SUCCEED, 'found', 'ab'), |