Class: Python::Pickle::Instructions::ShortBinUnicode

Inherits:
Python::Pickle::Instruction show all
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

#length, #value

Attributes inherited from Python::Pickle::Instruction

#opcode

Instance Method Summary collapse

Methods included from HasLengthAndValue

#==, #to_s

Methods inherited from Python::Pickle::Instruction

#==, #inspect, #to_s

Constructor Details

#initialize(length, value) ⇒ ShortBinUnicode

Initializes the SHORT_BINUNICODE instruction.

Parameters:

  • length (Integer)

    The length of the SHORT_BINUNICODE value.

  • value (String)

    The SHORT_BINUNICODE instruction's value.



25
26
27
# File 'lib/python/pickle/instructions/short_bin_unicode.rb', line 25

def initialize(length,value)
  super(:SHORT_BINUNICODE,length,value)
end