Lines Matching refs:netloc
43 general structure of a URL: ``scheme://netloc/path;parameters?query#fragment``.
53 ParseResult(scheme='http', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
63 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='',
99 | :attr:`netloc` | 1 | Network location part | empty string |
124 Unmatched square brackets in the :attr:`netloc` attribute will raise a
127 Characters in the :attr:`netloc` attribute that decompose under NFKC
145 Characters that affect netloc parsing under NFKC normalization will
244 | :attr:`netloc` | 1 | Network location part | empty string |
266 Unmatched square brackets in the :attr:`netloc` attribute will raise a
269 Characters in the :attr:`netloc` attribute that decompose under NFKC
279 Characters that affect netloc parsing under NFKC normalization will
318 :func:`urlunsplit`, removing possible *scheme* and *netloc* parts.
440 .. class:: ParseResult(scheme, netloc, path, params, query, fragment)
446 .. class:: SplitResult(scheme, netloc, path, query, fragment)
464 .. class:: ParseResultBytes(scheme, netloc, path, params, query, fragment)
472 .. class:: SplitResultBytes(scheme, netloc, path, query, fragment)