Python 的 urlparse 函数将一个 url 解析为六个组件(scheme、netloc、path 和其他东西)
现在我发现解析“example.com/path/file.ext”不返回netloc,而是返回路径“example.com/path/file.ext”。
不应该是 netloc = "example.com" 和 path = "/path/file.ext" 吗?
我们真的需要一个“://”来确定是否存在 netloc 吗?
Python的票:http ://bugs.python.org/issue8284