Sha256: dc46885c284e9bb0f9d07bd4bea4f55c8dc916a875b3824610beb5370e977d7c

Contents?: true

Size: 571 Bytes

Versions: 3

Compression:

Stored size: 571 Bytes

Contents

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

module Python
  module Pickle
    module Instructions
      #
      # Represents the `BININT1` instruction.
      #
      # @note introduces in protocol 1.
      #
      class BinInt1 < Instruction

        include HasValue

        #
        # Initializes the `BININT1` instruction.
        #
        # @param [BinInt1] value
        #   The `BININT1` instruction's value.
        #
        def initialize(value)
          super(:BININT1,value)
        end

      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
python-pickle-0.2.0 lib/python/pickle/instructions/bin_int1.rb
python-pickle-0.1.1 lib/python/pickle/instructions/bin_int1.rb
python-pickle-0.1.0 lib/python/pickle/instructions/bin_int1.rb