Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_peepholer.py62 self.assertNotInBytecode(unot, 'UNARY_NOT')
63 self.assertNotInBytecode(unot, 'POP_JUMP_IF_FALSE')
92 self.assertNotInBytecode(func, 'LOAD_GLOBAL')
100 self.assertNotInBytecode(f, 'LOAD_GLOBAL')
111 self.assertNotInBytecode(f, elem)
124 self.assertNotInBytecode(code, 'BUILD_TUPLE')
125 self.assertNotInBytecode(code, 'UNPACK_TUPLE')
138 self.assertNotInBytecode(code, 'BUILD_TUPLE')
143 self.assertNotInBytecode(code, 'BUILD_TUPLE')
178 self.assertNotInBytecode(code, 'BUILD_LIST')
[all …]
/external/python/cpython3/Lib/test/support/
Dbytecode_helper.py31 def assertNotInBytecode(self, x, opname, argval=_UNSPECIFIED): member in BytecodeTestCase
/external/python/cpython3/Doc/library/
Dtest.rst1630 .. method:: BytecodeTestCase.assertNotInBytecode(x, opname, argval=_UNSPECIFIED)