Class: Python::Pickle::Instructions::NewObj
- Inherits:
-
Python::Pickle::Instruction
- Object
- Python::Pickle::Instruction
- Python::Pickle::Instructions::NewObj
- Defined in:
- lib/python/pickle/instructions/new_obj.rb
Overview
Note:
introduced in protocol 2.
Represents a pickle NEWOBJ
instruction.
Instance Attribute Summary
Attributes inherited from Python::Pickle::Instruction
Instance Method Summary collapse
-
#initialize ⇒ NewObj
constructor
Initializes the
NEWOBJ
instruction.
Methods inherited from Python::Pickle::Instruction
Constructor Details
#initialize ⇒ NewObj
Initializes the NEWOBJ
instruction.
16 17 18 |
# File 'lib/python/pickle/instructions/new_obj.rb', line 16 def initialize super(:NEWOBJ) end |