cpython/Lib/urllib
Victor Stinner 536c1f1246 bpo-30500: urllib: Simplify splithost by calling into urlparse. (#1849) (#2289)
The current regex based splitting produces a wrong result. For example::

  http://abc#@def

Web browsers parse that URL as ``http://abc/#@def``, that is, the host
is ``abc``, the path is ``/``, and the fragment is ``#@def``.
(cherry picked from commit 90e01e50ef)
2017-06-20 15:37:24 +02:00
..
__init__.py
error.py
parse.py bpo-30500: urllib: Simplify splithost by calling into urlparse. (#1849) (#2289) 2017-06-20 15:37:24 +02:00
request.py
response.py
robotparser.py