(self)
| 2376 | |
| 2377 | @requires_debug_ranges() |
| 2378 | def test_bytecode_co_positions(self): |
| 2379 | bytecode = dis.Bytecode("a=1") |
| 2380 | for instr, positions in zip(bytecode, bytecode.codeobj.co_positions()): |
| 2381 | assert instr.positions == positions |
| 2382 | |
| 2383 | class TestBytecodeTestCase(BytecodeTestCase): |
| 2384 | def test_assert_not_in_with_op_not_in_bytecode(self): |
nothing calls this directly
no test coverage detected