Class: Python::Pickle::Instructions::Put
- Inherits:
-
Python::Pickle::Instruction
- Object
- Python::Pickle::Instruction
- Python::Pickle::Instructions::Put
- Includes:
- HasValue
- Defined in:
- lib/python/pickle/instructions/put.rb
Instance Attribute Summary
Attributes included from HasValue
Attributes inherited from Python::Pickle::Instruction
Instance Method Summary collapse
-
#initialize(value) ⇒ Put
constructor
Initializes the
PUT
instruction.
Methods included from HasValue
Methods inherited from Python::Pickle::Instruction
Constructor Details
#initialize(value) ⇒ Put
Initializes the PUT
instruction.
17 18 19 |
# File 'lib/python/pickle/instructions/put.rb', line 17 def initialize(value) super(:PUT,value) end |