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