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