Sha256: abfeb1f7bcc119fdeeb7889f4133c5d73055f0501fef9be324f1691296214612

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 `TUPLE2` instruction.
      #
      class Tuple2 < Instruction

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

      end

      # The `TUPLE2` instruction.
      TUPLE2 = Tuple2.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/tuple2.rb
python-pickle-0.1.1 lib/python/pickle/instructions/tuple2.rb
python-pickle-0.1.0 lib/python/pickle/instructions/tuple2.rb