Sha256: 131615f454d3f0247dfcb0acf07c6de9ec33646d16ea3a0b19c62283b5b1859b

Contents?: true

Size: 395 Bytes

Versions: 3

Compression:

Stored size: 395 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      #
      # Represents a pickle `MARK` instruction.
      #
      class Mark < Instruction

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

      end

      # The `MARK` instruction.
      MARK = Mark.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/mark.rb
python-pickle-0.1.1 lib/python/pickle/instructions/mark.rb
python-pickle-0.1.0 lib/python/pickle/instructions/mark.rb