Sha256: 2ff6b58e0a2e45612af5aa1f8c750de4ad0800be80a414d5b6e5153405d79ef1

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 `TUPLE3` instruction.
      #
      class Tuple3 < Instruction

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

      end

      # The `TUPLE3` instruction.
      TUPLE3 = Tuple3.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/tuple3.rb
python-pickle-0.1.1 lib/python/pickle/instructions/tuple3.rb
python-pickle-0.1.0 lib/python/pickle/instructions/tuple3.rb