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