Class: Python::Pickle::Instructions::NewTrue
- Inherits:
-
Python::Pickle::Instruction
- Object
- Python::Pickle::Instruction
- Python::Pickle::Instructions::NewTrue
- Defined in:
- lib/python/pickle/instructions/new_true.rb
Overview
Represents a pickle NEWTRUE
instruction.
Instance Attribute Summary
Attributes inherited from Python::Pickle::Instruction
Instance Method Summary collapse
-
#initialize ⇒ NewTrue
constructor
Initializes the
NEWTRUE
instruction.
Methods inherited from Python::Pickle::Instruction
Constructor Details
#initialize ⇒ NewTrue
Initializes the NEWTRUE
instruction.
14 15 16 |
# File 'lib/python/pickle/instructions/new_true.rb', line 14 def initialize super(:NEWTRUE) end |