Jeffrey's newest

This commit is contained in:
Guido van Rossum 1997-07-15 14:38:13 +00:00
parent 70f107f63d
commit 04a1d74229
4 changed files with 287 additions and 215 deletions

View file

@ -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,