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