Class: Python::Pickle::Instructions::Ext4
- Inherits:
-
Python::Pickle::Instruction
- Object
- Python::Pickle::Instruction
- Python::Pickle::Instructions::Ext4
- Includes:
- HasValue
- Defined in:
- lib/python/pickle/instructions/ext4.rb
Overview
Note:
introduced in protocol 2.
Represents a pickle EXT4
instruction.
Instance Attribute Summary
Attributes included from HasValue
Attributes inherited from Python::Pickle::Instruction
Instance Method Summary collapse
-
#initialize(value) ⇒ Ext4
constructor
Initializes the
EXT4
instruction.
Methods included from HasValue
Methods inherited from Python::Pickle::Instruction
Constructor Details
#initialize(value) ⇒ Ext4
Initializes the EXT4
instruction.
22 23 24 |
# File 'lib/python/pickle/instructions/ext4.rb', line 22 def initialize(value) super(:EXT4,value) end |