diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 5b952af6cbdff0..0c1059d18993a7 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -117,7 +117,7 @@ def test_pdb_basic_commands(): ... 'args', # display function args ... 'continue', ... ]): - ... test_function() # doctest: +SKIP + ... test_function() > (3)test_function() -> ret = test_function_2('baz') (Pdb) step diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py index ac2b39e5e90cd3..b825b27060e86b 100644 --- a/Lib/test/test_peepholer.py +++ b/Lib/test/test_peepholer.py @@ -846,7 +846,6 @@ def trace(frame, event, arg): self.assertNotInBytecode(f, "LOAD_FAST_CHECK") self.assertEqual(f.__code__.co_code, co_code) - @unittest.skip("fails with instr_ptr") def test_setting_lineno_one_undefined(self): code = textwrap.dedent("""\ def f(): @@ -881,7 +880,6 @@ def trace(frame, event, arg): self.assertNotInBytecode(f, "LOAD_FAST_CHECK") self.assertEqual(f.__code__.co_code, co_code) - @unittest.skip("fails with instr_ptr") def test_setting_lineno_two_undefined(self): code = textwrap.dedent("""\ def f():