Searched refs:_UNSPECIFIED (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/test/support/ |
D | bytecode_helper.py | 7 _UNSPECIFIED = object() variable 17 def assertInBytecode(self, x, opname, argval=_UNSPECIFIED): 21 if argval is _UNSPECIFIED or instr.argval == argval: 24 if argval is _UNSPECIFIED: 31 def assertNotInBytecode(self, x, opname, argval=_UNSPECIFIED): 36 if argval is _UNSPECIFIED:
|
/third_party/python/Doc/library/ |
D | test.rst | 1192 .. method:: BytecodeTestCase.assertInBytecode(x, opname, argval=_UNSPECIFIED) 1197 .. method:: BytecodeTestCase.assertNotInBytecode(x, opname, argval=_UNSPECIFIED)
|