Sha256: 284b519042d8f82b77da3ada3a9fd56a501a980b849e2aee0ae56811f4de5c66

Contents?: true

Size: 409 Bytes

Versions: 3

Compression:

Stored size: 409 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      #
      # Represents a pickle `REDUCE` instruction.
      #
      class Reduce < Instruction

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

      end

      # The `REDUCE` instruction.
      REDUCE = Reduce.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/reduce.rb
python-pickle-0.1.1 lib/python/pickle/instructions/reduce.rb
python-pickle-0.1.0 lib/python/pickle/instructions/reduce.rb