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