Sha256: b77cab50d85653317f869f5d7a378f688ce07ad9bf91519072e3e239b1f3ebb6

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 `NONE` instruction.
      #
      class None < Instruction

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

      end

      # The `NONE` instruction.
      NONE = None.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/none.rb
python-pickle-0.1.1 lib/python/pickle/instructions/none.rb
python-pickle-0.1.0 lib/python/pickle/instructions/none.rb