Sha256: 879139f73692b1146039215ee774609e6bbd53f073d0f4023ca9a3dc617f8a31

Contents?: true

Size: 402 Bytes

Versions: 3

Compression:

Stored size: 402 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      #
      # Represents a pickle `TUPLE` instruction.
      #
      class Tuple < Instruction

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

      end

      # The `TUPLE` instruction.
      TUPLE = Tuple.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/tuple.rb
python-pickle-0.1.1 lib/python/pickle/instructions/tuple.rb
python-pickle-0.1.0 lib/python/pickle/instructions/tuple.rb