Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_peepholer.py78 self.assertNotInBytecode(unot, 'UNARY_NOT')
79 self.assertNotInBytecode(unot, 'POP_JUMP_FORWARD_IF_FALSE')
80 self.assertNotInBytecode(unot, 'POP_JUMP_BACKWARD_IF_FALSE')
111 self.assertNotInBytecode(func, 'LOAD_GLOBAL')
119 self.assertNotInBytecode(f, 'LOAD_GLOBAL')
130 self.assertNotInBytecode(f, elem)
144 self.assertNotInBytecode(code, 'BUILD_TUPLE')
145 self.assertNotInBytecode(code, 'UNPACK_SEQUENCE')
159 self.assertNotInBytecode(code, 'BUILD_TUPLE')
164 self.assertNotInBytecode(code, 'BUILD_TUPLE')
[all …]
Dtest_dis.py1730 self.assertNotInBytecode(code, "LOAD_NAME")
1731 self.assertNotInBytecode(code, "LOAD_NAME", "a")
1737 self.assertNotInBytecode(code, "LOAD_CONST", 2)
1742 self.assertNotInBytecode(code, "LOAD_CONST", 1)
/aosp_15_r20/external/python/cpython3/Lib/test/support/
Dbytecode_helper.py31 def assertNotInBytecode(self, x, opname, argval=_UNSPECIFIED): member in BytecodeTestCase
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.10.0a4.rst808 Fix bytecode helper assertNotInBytecode.
/aosp_15_r20/external/python/cpython3/Doc/library/
Dtest.rst1233 .. method:: BytecodeTestCase.assertNotInBytecode(x, opname, argval=_UNSPECIFIED)