Sha256: d0a2e96d8fec4c47bd21bf6f215f8922944a2d9b41ca3ed8fc8aa34e034fb8f2

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 `TUPLE1` instruction.
      #
      class Tuple1 < Instruction

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

      end

      # The `TUPLE1` instruction.
      TUPLE1 = Tuple1.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/tuple1.rb
python-pickle-0.1.1 lib/python/pickle/instructions/tuple1.rb
python-pickle-0.1.0 lib/python/pickle/instructions/tuple1.rb