Class: Python::Pickle::Instructions::PopMark

Inherits:
Python::Pickle::Instruction show all
Defined in:
lib/python/pickle/instructions/pop_mark.rb

Overview

Represents a pickle POP_MARK instruction.

Instance Attribute Summary

Attributes inherited from Python::Pickle::Instruction

#opcode

Instance Method Summary collapse

Methods inherited from Python::Pickle::Instruction

#==, #inspect, #to_s

Constructor Details

#initializePopMark

Initializes the POP_MARK instruction.



14
15
16
# File 'lib/python/pickle/instructions/pop_mark.rb', line 14

def initialize
  super(:POP_MARK)
end