Class: Python::Pickle::Instructions::SetItems

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

Overview

Note:

Introduced in protocol 1.

Represents a pickle SETITEMS 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

#initializeSetItems

Initializes the SETITEMS instruction.



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

def initialize
  super(:SETITEMS)
end