From: Guido van Rossum Date: Tue, 15 Jul 1997 02:49:15 +0000 (+0000) Subject: Three fewer incorrect failures X-Git-Tag: v1.5a3~291 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70f107f63ddf8be78bc985ba2892e615396b25d6;p=python Three fewer incorrect failures --- diff --git a/Lib/test/output/test_re b/Lib/test/output/test_re index 887b6d297c..56a225cade 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)