mirror of
https://github.com/python/cpython.git
synced 2025-07-14 23:05:17 +00:00
Issue #23411: Added DefragResult, ParseResult, SplitResult, DefragResultBytes,
ParseResultBytes, and SplitResultBytes to urllib.parse.__all__. Patch by Martin Panter.
This commit is contained in:
parent
43a1bed3d2
commit
1515450440
3 changed files with 23 additions and 1 deletions
|
@ -34,7 +34,9 @@ import collections
|
|||
__all__ = ["urlparse", "urlunparse", "urljoin", "urldefrag",
|
||||
"urlsplit", "urlunsplit", "urlencode", "parse_qs",
|
||||
"parse_qsl", "quote", "quote_plus", "quote_from_bytes",
|
||||
"unquote", "unquote_plus", "unquote_to_bytes"]
|
||||
"unquote", "unquote_plus", "unquote_to_bytes",
|
||||
"DefragResult", "ParseResult", "SplitResult",
|
||||
"DefragResultBytes", "ParseResultBytes", "SplitResultBytes"]
|
||||
|
||||
# A classification of schemes ('' means apply by default)
|
||||
uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue