Pop

Pop#

Pops the first item off the stack.

def _pop(evm):
    evm.pc += 1
    evm.gas_dec(2)
    evm.stack.pop(0)