summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-07-15 02:49:15 (GMT)
committerGuido van Rossum <guido@python.org>1997-07-15 02:49:15 (GMT)
commit70f107f63ddf8be78bc985ba2892e615396b25d6 (patch)
treee4b2ac12f3fafee7c98e39725572e47436e82116 /Lib
parentfaf490898d20b2e5dfbc5cf39b6a8e612837647b (diff)
downloadcpython-70f107f63ddf8be78bc985ba2892e615396b25d6.zip
cpython-70f107f63ddf8be78bc985ba2892e615396b25d6.tar.gz
cpython-70f107f63ddf8be78bc985ba2892e615396b25d6.tar.bz2
Three fewer incorrect failures
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/output/test_re3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/output/test_re b/Lib/test/output/test_re
index 887b6d2..56a225c 100644
--- a/Lib/test/output/test_re
+++ b/Lib/test/output/test_re
@@ -50,11 +50,8 @@ test_re
('a[^]b]c', 'a]c', 1)
('a[^]b]c', 'adc', 0, 'found', 'adc')
('\\ba\\b', 'a-', 0, '"-"', '-')
-=== Failed incorrectly ('\\ba\\b', 'a-', 0, '"-"', '-')
('\\ba\\b', '-a', 0, '"-"', '-')
-=== Failed incorrectly ('\\ba\\b', '-a', 0, '"-"', '-')
('\\ba\\b', '-a-', 0, '"-"', '-')
-=== Failed incorrectly ('\\ba\\b', '-a-', 0, '"-"', '-')
('\\by\\b', 'xy', 1)
('\\by\\b', 'yz', 1)
('\\by\\b', 'xyz', 1)