Sha256: ee4b9a984f4696b163368bdd28eb32536486559fdbb0b5705fa073c72eeaa81f

Contents?: true

Size: 233 Bytes

Versions: 3

Compression:

Stored size: 233 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      class Dict < Instruction

        def initialize
          super(:DICT)
        end

      end

      DICT = Dict.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/dict.rb
python-pickle-0.1.1 lib/python/pickle/instructions/dict.rb
python-pickle-0.1.0 lib/python/pickle/instructions/dict.rb