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