Class: Python::Pickle::Instructions::BinUnicode

Inherits:
Python::Pickle::Instruction show all
Includes:
HasLengthAndValue
Defined in:
lib/python/pickle/instructions/bin_unicode.rb

Overview

Note:

introduces in protocol 1.

Represents the 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) ⇒ BinUnicode

Initializes the BINUNICODE instruction.

Parameters:

  • length (Integer)

    The length of the BINUNICODE value.

  • value (String)

    The BINUNICODE instruction's value.



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

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