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