Class: Python::Pickle::Instructions::Long4
- Inherits:
-
Python::Pickle::Instruction
- Object
- Python::Pickle::Instruction
- Python::Pickle::Instructions::Long4
- Includes:
- HasLengthAndValue
- Defined in:
- lib/python/pickle/instructions/long4.rb
Overview
Note:
introduces in protocol 1.
Represents the LONG4
instruction.
Instance Attribute Summary
Attributes included from HasLengthAndValue
Attributes inherited from Python::Pickle::Instruction
Instance Method Summary collapse
-
#initialize(length, value) ⇒ Long4
constructor
Initializes the
LONG4
instruction.
Methods included from HasLengthAndValue
Methods inherited from Python::Pickle::Instruction
Constructor Details
#initialize(length, value) ⇒ Long4
Initializes the LONG4
instruction.
25 26 27 |
# File 'lib/python/pickle/instructions/long4.rb', line 25 def initialize(length,value) super(:LONG4,length,value) end |