Method: Python::Pickle::Deserializer#execute_pop

Defined in:
lib/python/pickle/deserializer.rb

#execute_popObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Executes the POP instruction.



278
279
280
# File 'lib/python/pickle/deserializer.rb', line 278

def execute_pop
  @stack.pop
end