Sha256: 2dc35847c35f14d4ba9ad8d588c09a55c331a560b2575eccd019d60a34bb19fd

Contents?: true

Size: 388 Bytes

Versions: 3

Compression:

Stored size: 388 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      #
      # Represents a pickle `POP` instruction.
      #
      class Pop < Instruction

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

      end

      # The `POP` instruction.
      POP = Pop.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.rb
python-pickle-0.1.1 lib/python/pickle/instructions/pop.rb
python-pickle-0.1.0 lib/python/pickle/instructions/pop.rb