(self, instrs_1, instrs_2, /)
| 1998 | class InstructionTestCase(BytecodeTestCase): |
| 1999 | |
| 2000 | def assertInstructionsEqual(self, instrs_1, instrs_2, /): |
| 2001 | instrs_1 = [instr_1._replace(positions=None, cache_info=None) for instr_1 in instrs_1] |
| 2002 | instrs_2 = [instr_2._replace(positions=None, cache_info=None) for instr_2 in instrs_2] |
| 2003 | self.assertEqual(instrs_1, instrs_2) |
| 2004 | |
| 2005 | class InstructionTests(InstructionTestCase): |
| 2006 |
no test coverage detected