Class: Python::Pickle::Instructions::NewObjEx

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

Overview

Note:

introduced in protocol 3.

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

#initializeNewObjEx

Initializes the NEWOBJ_EX instruction.



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

def initialize
  super(:NEWOBJ_EX)
end