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

Method check

Lib/test/test_dis.py:1283–1286  ·  view source on GitHub ↗
(expected, **kwargs)

Source from the content-addressed store, hash-verified

1281
1282 def test_disassemble_recursive(self):
1283 def check(expected, **kwargs):
1284 dis = self.get_disassembly(_h, **kwargs)
1285 dis = self.strip_addresses(dis)
1286 self.assertEqual(dis, expected)
1287
1288 check(dis_nested_0, depth=0)
1289 check(dis_nested_1, depth=1)

Callers

nothing calls this directly

Calls 3

get_disassemblyMethod · 0.95
strip_addressesMethod · 0.80
assertEqualMethod · 0.45

Tested by

no test coverage detected