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 c2c8fbe commit 162b1ecCopy full SHA for 162b1ec
1 file changed
Lib/test/test_capi/test_opt.py
@@ -2498,6 +2498,7 @@ def testfunc(n):
2498
2499
self.assertIn("_POP_TOP_NOP", uops)
2500
2501
+ @unittest.skipIf(Py_GIL_DISABLED, "FT might immortalize this.")
2502
def test_pop_top_specialize_int(self):
2503
def testfunc(n):
2504
for _ in range(n):
@@ -2511,6 +2512,7 @@ def testfunc(n):
2511
2512
2513
self.assertIn("_POP_TOP_INT", uops)
2514
2515
2516
def test_pop_top_specialize_float(self):
2517
2518
0 commit comments