# File lib/drb/drb.rb, line 1001
    def self._load(s)
      uri, ref = Marshal.load(s)
      
      if DRb.here?(uri)
        obj = DRb.to_obj(ref)
        if ((! obj.tainted?) && Thread.current[:drb_untaint])
          Thread.current[:drb_untaint].push(obj)
        end
        return obj
      end

      self.new_with(uri, ref)
    end