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 9443007 commit a3b82a0Copy full SHA for a3b82a0
Lib/test/test_capi/test_opt.py
@@ -2388,18 +2388,6 @@ def testfunc(n):
2388
2389
self.assertIn("_POP_TOP_FLOAT", uops)
2390
2391
- def test_pop_top_specialize_str(self):
2392
- def testfunc(n):
2393
- for _ in range(n):
2394
- global_identity("2" + "1")
2395
-
2396
- testfunc(TIER2_THRESHOLD)
2397
2398
- ex = get_first_executor(testfunc)
2399
- self.assertIsNotNone(ex)
2400
- uops = get_opnames(ex)
2401
2402
- self.assertIn("_POP_TOP_UNICODE", uops)
2403
2404
2405
def global_identity(x):
0 commit comments