MCPcopy Index your code
hub / github.com/python/cpython / test_super_instructions

Method test_super_instructions

Lib/test/test_dis.py:1327–1332  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1325 @cpython_only
1326 @requires_specialization
1327 def test_super_instructions(self):
1328 self.code_quicken(lambda: load_test(0, 0))
1329 got = self.get_disassembly(load_test, adaptive=True)
1330 jit = sys._jit.is_enabled()
1331 expected = dis_load_test_quickened_code.format("_JIT" if jit else "")
1332 self.do_disassembly_compare(got, expected)
1333
1334 @cpython_only
1335 @requires_specialization

Callers

nothing calls this directly

Calls 5

code_quickenMethod · 0.95
get_disassemblyMethod · 0.95
load_testFunction · 0.85
formatMethod · 0.45

Tested by

no test coverage detected