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