# File lib/http/cookie.rb, line 444
  def path= path
    path = (String.try_convert(path) or
      raise TypeError, "#{path.class} is not a String")
    @path = path.start_with?('/') ? path : '/'
  end