Class: Python::Pickle::Instructions::Appends

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

Overview

Note:

Introduced in protocol 1.

Represents a pickle APPENDS instruction.

Instance Attribute Summary

Attributes inherited from Python::Pickle::Instruction

#opcode

Instance Method Summary collapse

Methods inherited from Python::Pickle::Instruction

#==, #inspect, #to_s

Constructor Details

#initializeAppends

Initializes the APPENDS instruction.



16
17
18
# File 'lib/python/pickle/instructions/appends.rb', line 16

def initialize
  super(:APPENDS)
end