Sha256: 7d9fbf15d55fb733de830fcc4dfeef3234f1ea40d3a46faba0530e37bc40a60c

Contents?: true

Size: 395 Bytes

Versions: 3

Compression:

Stored size: 395 Bytes

Contents

require 'python/pickle/instruction'

module Python
  module Pickle
    module Instructions
      #
      # Represents a pickle `LIST` instruction.
      #
      class List < Instruction

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

      end

      # The `LIST` instruction.
      LIST = List.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/list.rb
python-pickle-0.1.1 lib/python/pickle/instructions/list.rb
python-pickle-0.1.0 lib/python/pickle/instructions/list.rb