From 7ad94f011ef03945c2d9475679f503f5677c4f6d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 28 Feb 2006 00:32:16 +0000 Subject: Update the compiler package to compile the with-statement. Jeremy, please review! --- Lib/test/test_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_compiler.py') diff --git a/Lib/test/test_compiler.py b/Lib/test/test_compiler.py index d2f062c928..c328d714d0 100644 --- a/Lib/test/test_compiler.py +++ b/Lib/test/test_compiler.py @@ -20,7 +20,7 @@ class CompilerTest(unittest.TestCase): for basename in os.listdir(dir): if not basename.endswith(".py"): continue - if not TEST_ALL and random() < 0.98: + if not TEST_ALL and random() < 0.98 and basename != "test_with.py": continue path = os.path.join(dir, basename) if test.test_support.verbose: -- cgit v1.2.1