[Python-checkins] cpython: Disable test_13183 temporarily on Windows for 3.3a3 release.

georg.brandl python-checkins at python.org
Tue May 1 09:57:16 CEST 2012


http://hg.python.org/cpython/rev/0b53b70a40a0
changeset:   76690:0b53b70a40a0
tag:         v3.3.0a3
user:        Georg Brandl <georg at python.org>
date:        Tue May 01 09:57:34 2012 +0200
summary:
  Disable test_13183 temporarily on Windows for 3.3a3 release.

files:
  Lib/test/test_pdb.py |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py
--- a/Lib/test/test_pdb.py
+++ b/Lib/test/test_pdb.py
@@ -1,5 +1,5 @@
 # A test suite for pdb; not very comprehensive at the moment.
-
+import os
 import imp
 import pdb
 import sys
@@ -631,6 +631,7 @@
         self.assertNotIn(b'SyntaxError', stdout,
                          "Got a syntax error running test script under PDB")
 
+    @unittest.skipIf(os.name == 'nt', "temporarily disabled on Windows")
     def test_issue13183(self):
         script = """
             from bar import bar

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list