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