summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2000-06-30 09:13:06 (GMT)
committerFredrik Lundh <fredrik@pythonware.com>2000-06-30 09:13:06 (GMT)
commitb71624e6988966b53b72f9447bbaa06e0a004eb0 (patch)
tree0a2fe86c844aec7ca742c59f2d1360904a1fef0f /Lib/test
parentc155f828faeb115f82d527d786da4f662ebcbbd8 (diff)
downloadcpython-b71624e6988966b53b72f9447bbaa06e0a004eb0.zip
cpython-b71624e6988966b53b72f9447bbaa06e0a004eb0.tar.gz
cpython-b71624e6988966b53b72f9447bbaa06e0a004eb0.tar.bz2
- added support for (?P=name)
(closes #3 and #7 from the status report)
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/output/test_sre2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/output/test_sre b/Lib/test/output/test_sre
index 65eadf9..75caa55 100644
--- a/Lib/test/output/test_sre
+++ b/Lib/test/output/test_sre
@@ -1,11 +1,9 @@
test_sre
test_support -- test failed re module pickle
test_support -- test failed re module cPickle
-=== Syntax error: ('(?P<foo_123>a)(?P=foo_123)', 'aa', 0, 'g1', 'a')
=== Failed incorrectly ('^(.+)?B', 'AB', 0, 'g1', 'A')
=== Failed incorrectly ('(a+)+\\1', 'aa', 0, 'found+"-"+g1', 'aa-a')
=== grouping error ('([^/]*/)*sub1/', 'd:msgs/tdir/sub1/trial/away.cpp', 0, 'found+"-"+g1', 'd:msgs/tdir/sub1/-tdir/') 'd:msgs/tdir/sub1/-trial/' should be 'd:msgs/tdir/sub1/-tdir/'
-=== Syntax error: ('(?P<id>aa)(?P=id)', 'aaaa', 0, 'found+"-"+id', 'aaaa-aa')
=== grouping error ('([abc])*bcd', 'abcd', 0, 'found+"-"+g1', 'abcd-a') 'abcd-c' should be 'abcd-a'
=== grouping error ('(?i)([abc])*bcd', 'ABCD', 0, 'found+"-"+g1', 'ABCD-A') 'ABCD-C' should be 'ABCD-A'
=== Syntax error: ('a(?!b).', 'abad', 0, 'found', 'ad')