Lines Matching refs:netloc
45 general structure of a URL: ``scheme://netloc/path;parameters?query#fragment``.
55 ParseResult(scheme='http', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
66 a netloc only if it is properly introduced by '//'. Otherwise the
72 ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
75 ParseResult(scheme='', netloc='', path='www.cwi.nl/%7Eguido/Python.html',
78 ParseResult(scheme='', netloc='', path='help/Python.html', params='',
98 | :attr:`netloc` | 1 | Network location part | empty string |
202 | :attr:`netloc` | 1 | Network location part | empty string |
266 :func:`urlunsplit`, removing possible *scheme* and *netloc* parts.
340 .. class:: ParseResult(scheme, netloc, path, params, query, fragment)
345 .. class:: SplitResult(scheme, netloc, path, query, fragment)