We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5d7596 commit a0b85d4Copy full SHA for a0b85d4
Lib/test/test_code.py
@@ -200,11 +200,6 @@
200
except ImportError:
201
_testcapi = None
202
203
-try:
204
- import _testinternalcapi
205
-except ImportError:
206
- _testinternalcapi = None
207
-
208
from test import support
209
from test.support import (cpython_only,
210
check_impl_detail, requires_debug_ranges,
@@ -593,7 +588,6 @@ def test_code_equal_with_instrumentation(self):
593
588
594
589
@unittest.skipUnless(ctypes, "requires ctypes")
595
590
@unittest.skipUnless(_testcapi, "requires _testcapi")
596
- @unittest.skipUnless(_testinternalcapi, "requires _testinternalcapi")
597
591
def test_co_framesize_overflow(self):
598
592
# See: https://github.com/python/cpython/issues/126119.
599
0 commit comments