Class: Python::Pickle::Instructions::Pop

Inherits:
Python::Pickle::Instruction show all
Defined in:
lib/python/pickle/instructions/pop.rb

Overview

Represents a pickle POP instruction.

Instance Attribute Summary

Attributes inherited from Python::Pickle::Instruction

#opcode

Instance Method Summary collapse

Methods inherited from Python::Pickle::Instruction

#==, #inspect, #to_s

Constructor Details

#initializePop

Initializes the POP instruction.



14
15
16
# File 'lib/python/pickle/instructions/pop.rb', line 14

def initialize
  super(:POP)
end