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