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