class dis.Instruction
Details for a bytecode operation
-
opcode
-
numeric code for operation, corresponding to the opcode values listed below and the bytecode values in the Opcode collections.
-
opname
-
human readable name for operation
-
arg
-
numeric argument to operation (if any), otherwise None
-
argval
-
resolved arg value (if known), otherwise same as arg
-
argrepr
-
human readable description of operation argument
-
offset
-
start index of operation within bytecode sequence
-
starts_line
-
line started by this opcode (if any), otherwise None
-
is_jump_target
-
True
if other code jumps to here, otherwiseFalse
New in version 3.4.
Please login to continue.