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