]> granicus.if.org Git - python/commitdiff
Fixed a syntax error caused by a bad line in the Perl source.
authorGuido van Rossum <guido@python.org>
Tue, 15 Jul 1997 19:01:04 +0000 (19:01 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 15 Jul 1997 19:01:04 +0000 (19:01 +0000)
Lib/test/re_tests.py

index 27b92304e0212a7ca11bbb37074c0eb40affb244..fde2955868aed2cf965342b513624cbcc8596a8f 100755 (executable)
@@ -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'),
 ]