Sha256: b2ce5745d93f8bd40f042930a71b8e0e9a73a5578da76a06ef10c55a27a4d22d

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 `APPEND` instruction.
      #
      class Append < Instruction

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

      end

      # The `APPEND` instruction.
      APPEND = Append.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/append.rb
python-pickle-0.1.1 lib/python/pickle/instructions/append.rb
python-pickle-0.1.0 lib/python/pickle/instructions/append.rb