Class: Python::Pickle::Instructions::Dup
- Inherits:
-
Python::Pickle::Instruction
- Object
- Python::Pickle::Instruction
- Python::Pickle::Instructions::Dup
- Defined in:
- lib/python/pickle/instructions/dup.rb
Overview
Represents a pickle DUP
instruction.
Instance Attribute Summary
Attributes inherited from Python::Pickle::Instruction
Instance Method Summary collapse
-
#initialize ⇒ Dup
constructor
Initializes the
DUP
instruction.
Methods inherited from Python::Pickle::Instruction
Constructor Details
#initialize ⇒ Dup
Initializes the DUP
instruction.
14 15 16 |
# File 'lib/python/pickle/instructions/dup.rb', line 14 def initialize super(:DUP) end |