[Python-checkins] cpython: Issue #13183: Revert 0b53b70a40a0 (reenable test on windows)
martin.v.loewis
python-checkins at python.org
Wed May 2 07:41:29 CEST 2012
http://hg.python.org/cpython/rev/6c9ce7e34511
changeset: 76711:6c9ce7e34511
user: Martin v. Löwis <martin at v.loewis.de>
date: Wed May 02 07:41:22 2012 +0200
summary:
Issue #13183: Revert 0b53b70a40a0 (reenable test on windows)
files:
Lib/test/test_pdb.py | 3 +--
1 files changed, 1 insertions(+), 2 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,7 +631,6 @@
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