diff options
author | Georg Brandl <georg@python.org> | 2012-05-01 07:57:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-05-01 07:57:34 (GMT) |
commit | b613a3d4587bd93ea66ed0516372b0b7cd9450eb (patch) | |
tree | 46be91757c6a03c2a105478731cf9c726182ffcb /Lib/test/test_pdb.py | |
parent | ab0ef20663ee64667cc979f6810e60914d26d149 (diff) | |
download | cpython-b613a3d4587bd93ea66ed0516372b0b7cd9450eb.zip cpython-b613a3d4587bd93ea66ed0516372b0b7cd9450eb.tar.gz cpython-b613a3d4587bd93ea66ed0516372b0b7cd9450eb.tar.bz2 |
Disable test_13183 temporarily on Windows for 3.3a3 release.v3.3.0a3
Diffstat (limited to 'Lib/test/test_pdb.py')
-rw-r--r-- | 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 index 1570873..fc23e14 100644 --- 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 @@ class PdbTestCase(unittest.TestCase): 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 |