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