Sha256: 3a039678cc8a6ae550efc76b6ec04a7aea436cc86de6d30a5b30bd02e7c46e1f

Contents?: true

Size: 589 Bytes

Versions: 1

Compression:

Stored size: 589 Bytes

Contents

require 'python/pickle/instruction'
require 'python/pickle/instructions/has_value'

module Python
  module Pickle
    module Instructions
      #
      # Represents the `BINPERSID` instruction.
      #
      # @note introduced in protocol 0.
      #
      # @since 0.2.0
      #
      class BinPersID < Instruction

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

      end

      # Represents the `BINPERSID` instruction.
      #
      # @since 0.2.0
      BINPERSID = BinPersID.new
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
python-pickle-0.2.0 lib/python/pickle/instructions/bin_persid.rb