Sha256: 2cc03bca4ad4ae427a6339a684aa72bc535500cc6d60e2353f9fd7f7c0121ea8

Contents?: true

Size: 416 Bytes

Versions: 3

Compression:

Stored size: 416 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      #
      # Represents a pickle `SETITEM` instruction.
      #
      class SetItem < Instruction

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

      end

      # The `SETITEM` instruction.
      SETITEM = SetItem.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/set_item.rb
python-pickle-0.1.1 lib/python/pickle/instructions/set_item.rb
python-pickle-0.1.0 lib/python/pickle/instructions/set_item.rb