Sha256: d51e2b803d7ea6e47bcd431ed40c7f90197a77026cbaa53ff25e9f2c8e8e15fe

Contents?: true

Size: 449 Bytes

Versions: 3

Compression:

Stored size: 449 Bytes

Contents

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

module Python
  module Pickle
    module Instructions
      class Long < Instruction

        include HasValue

        #
        # Initializes the `LONG` instruction.
        #
        # @param [Integer] value
        #   The `LONG` instruction's value.
        #
        def initialize(value)
          super(:LONG,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/long.rb
python-pickle-0.1.1 lib/python/pickle/instructions/long.rb
python-pickle-0.1.0 lib/python/pickle/instructions/long.rb