Sha256: 32f99471334c1a401f4a15f9ded15024db095f056e1c717e93031ca050d13b16

Contents?: true

Size: 421 Bytes

Versions: 3

Compression:

Stored size: 421 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      #
      # Represents a pickle `POP_MARK` instruction.
      #
      class PopMark < Instruction

        #
        # Initializes the `POP_MARK` instruction.
        #
        def initialize
          super(:POP_MARK)
        end

      end

      # The `POP_MARK` instruction.
      POP_MARK = PopMark.new
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
python-pickle-0.2.0 lib/python/pickle/instructions/pop_mark.rb
python-pickle-0.1.1 lib/python/pickle/instructions/pop_mark.rb
python-pickle-0.1.0 lib/python/pickle/instructions/pop_mark.rb