Sha256: 3b5dc1bb6b3ec8b6ecdc460c00b42e4ee341a6c673ca7d98c7d0ea07571382f3

Contents?: true

Size: 464 Bytes

Versions: 3

Compression:

Stored size: 464 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      #
      # Represents a pickle `APPENDS` instruction.
      #
      # @note Introduced in protocol 1.
      #
      class Appends < Instruction

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

      end

      # The `APPENDS` instruction.
      APPENDS = Appends.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/appends.rb
python-pickle-0.1.1 lib/python/pickle/instructions/appends.rb
python-pickle-0.1.0 lib/python/pickle/instructions/appends.rb