Class: Python::Pickle::Instructions::BinPut
- Inherits:
-
Python::Pickle::Instruction
- Object
- Python::Pickle::Instruction
- Python::Pickle::Instructions::BinPut
- Includes:
- HasValue
- Defined in:
- lib/python/pickle/instructions/bin_put.rb
Overview
Note:
introduced in protocol 1.
Represents the BINPUT
instruction.
Instance Attribute Summary
Attributes included from HasValue
Attributes inherited from Python::Pickle::Instruction
Instance Method Summary collapse
-
#initialize(value) ⇒ BinPut
constructor
Initializes the
BINPUT
instruction.
Methods included from HasValue
Methods inherited from Python::Pickle::Instruction
Constructor Details
#initialize(value) ⇒ BinPut
Initializes the BINPUT
instruction.
22 23 24 |
# File 'lib/python/pickle/instructions/bin_put.rb', line 22 def initialize(value) super(:BINPUT,value) end |