diff options
author | Guido van Rossum <guido@python.org> | 1997-07-15 19:01:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-15 19:01:04 (GMT) |
commit | 9ddd9dad80b56a314e265fd50e522f642c7e18e6 (patch) | |
tree | 1867a013d0b88d61cb19fe7d382ee6a284c0fd02 | |
parent | 26d80e67148b7c61fda71490e5b06b0616aeb45e (diff) | |
download | cpython-9ddd9dad80b56a314e265fd50e522f642c7e18e6.zip cpython-9ddd9dad80b56a314e265fd50e522f642c7e18e6.tar.gz cpython-9ddd9dad80b56a314e265fd50e522f642c7e18e6.tar.bz2 |
Fixed a syntax error caused by a bad line in the Perl source.
-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 27b9230..fde2955 100755 --- a/Lib/test/re_tests.py +++ b/Lib/test/re_tests.py @@ -465,6 +465,6 @@ tests = [ ('a(?:b|c|d)(.)', 'ace', SUCCEED, 'g1', 'e'), ('a(?:b|c|d)*(.)', 'ace', SUCCEED, 'g1', 'e'), ('a(?:b|c|d)+?(.)', 'ace', SUCCEED, 'g1', 'e'), - ('a(?:b|(c|e){1,2}?|d)+?(.)', 'ace', SUCCEED, 'g1g2', 'ce'), + ('a(?:b|(c|e){1,2}?|d)+?(.)', 'ace', SUCCEED, 'g1+"-"+g2', 'c-e'), ('^(.+)?B', 'AB', SUCCEED, 'g1', 'A'), ] |