Sha256: c8dc0de7f80ad9f66538709ca4520d5d00fd656f679056be4fcc521f540a4004

Contents?: true

Size: 445 Bytes

Versions: 3

Compression:

Stored size: 445 Bytes

Contents

require 'python/pickle/instruction'
require 'python/pickle/instructions/has_value'

module Python
  module Pickle
    module Instructions
      class Put < Instruction

        include HasValue

        #
        # Initializes the `PUT` instruction.
        #
        # @param [Integer] value
        #   The `PUT` instruction's value.
        #
        def initialize(value)
          super(:PUT,value)
        end

      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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