Home
last modified time | relevance | path

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

/third_party/python/Lib/
Ddis.py194 _Instruction = collections.namedtuple("_Instruction", variable
197 _Instruction.opname.__doc__ = "Human readable name for operation"
198 _Instruction.opcode.__doc__ = "Numeric code for operation"
199 _Instruction.arg.__doc__ = "Numeric argument to operation (if any), otherwise None"
200 _Instruction.argval.__doc__ = "Resolved arg value (if known), otherwise same as arg"
201 _Instruction.argrepr.__doc__ = "Human readable description of operation argument"
202 _Instruction.offset.__doc__ = "Start index of operation within bytecode sequence"
203 _Instruction.starts_line.__doc__ = "Line started by this opcode (if any), otherwise None"
204 _Instruction.is_jump_target.__doc__ = "True if other code jumps to here, otherwise False"
209 class Instruction(_Instruction):