(original) (raw)

changeset: 76711:6c9ce7e34511 user: Martin v. Löwis martin@v.loewis.de date: Wed May 02 07:41:22 2012 +0200 files: Lib/test/test_pdb.py description: Issue #13183: Revert 0b53b70a40a0 (reenable test on windows) diff -r 0269c592c8b1 -r 6c9ce7e34511 Lib/test/test_pdb.py --- a/Lib/test/test_pdb.py Wed May 02 08:01:02 2012 +0800 +++ b/Lib/test/test_pdb.py Wed May 02 07:41:22 2012 +0200 @@ -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 /martin@v.loewis.de