Home
last modified time | relevance | path

Searched refs:assertNotInBytecode (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_peepholer.py13 self.assertNotInBytecode(unot, 'UNARY_NOT')
14 self.assertNotInBytecode(unot, 'POP_JUMP_IF_FALSE')
41 self.assertNotInBytecode(func, 'LOAD_GLOBAL')
48 self.assertNotInBytecode(f, 'LOAD_GLOBAL')
58 self.assertNotInBytecode(f, elem)
70 self.assertNotInBytecode(code, 'BUILD_TUPLE')
71 self.assertNotInBytecode(code, 'UNPACK_TUPLE')
83 self.assertNotInBytecode(code, 'BUILD_TUPLE')
87 self.assertNotInBytecode(code, 'BUILD_TUPLE')
120 self.assertNotInBytecode(code, 'BUILD_LIST')
[all …]
Dbytecode_helper.py31 def assertNotInBytecode(self, x, opname, argval=_UNSPECIFIED): member in BytecodeTestCase