Can be viewed with Python dis.
Full List
https://docs.python.org/3/library/dis.html#python-bytecode-instructions
- LOAD_CONST: Pushes a constant onto the stack.
- LOAD_FAST: Loads a local variable onto the stack.
- STORE_FAST: Stores a value into a local variable.
- LOAD_GLOBAL: Loads a global variable onto the stack.
- CALL_FUNCTION: Calls a function.
- RETURN_VALUE: Returns a value from a function.
- POP_TOP: Removes the top item from the stack.
- JUMP_ABSOLUTE: Jumps to an absolute target.
- COMPARE_OP: Performs a comparison operation.
- BINARY_ADD: Implements the addition operation.
- BINARY_MULTIPLY: Implements the multiplication operation.
- LOAD_ATTR: Loads an attribute from an object.
- STORE_ATTR: Stores an attribute in an object.
- BUILD_LIST: Creates a new list.
- BUILD_TUPLE: Creates a new tuple