Other New Opcodes

*_SELF Opcodes
Shortcut self.attr construct
LOAD_FAST self
LOAD_ATTR a
LOAD_SELF a
 
Less general and not much better than
LOAD_FAST_ATTR
LOAD_FAST self
LOAD_ATTR a
LOAD_FAST_ATTR self,a
*_LOC Opcodes
Treat local vars as "registers"
LOAD_FAST a
LOAD_FAST b
BINARY_ADD
ADD_LOC a,b