diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2000-06-30 10:41:31 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2000-06-30 10:41:31 (GMT) |
commit | 43b3b49b5ab486295baef3a35cd8e836f735c065 (patch) | |
tree | 3ca960c788dafde87799443f2087dc661dc52d48 /Lib/test | |
parent | a4657f736c34e4bb1802b40246028c5bec545fe6 (diff) | |
download | cpython-43b3b49b5ab486295baef3a35cd8e836f735c065.zip cpython-43b3b49b5ab486295baef3a35cd8e836f735c065.tar.gz cpython-43b3b49b5ab486295baef3a35cd8e836f735c065.tar.bz2 |
- fixed lookahead assertions (#10, #11, #12)
- untabified sre_constants.py
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/output/test_sre | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/output/test_sre b/Lib/test/output/test_sre index 75caa55..d3732b5 100644 --- a/Lib/test/output/test_sre +++ b/Lib/test/output/test_sre @@ -6,7 +6,4 @@ test_support -- test failed re module cPickle === 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/' === 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') -=== Syntax error: ('a(?=d).', 'abad', 0, 'found', 'ad') -=== Syntax error: ('a(?=c|d).', 'abad', 0, 'found', 'ad') === Failed incorrectly ('^(.+)?B', 'AB', 0, 'g1', 'A') |