From: Senthil Kumaran Date: Mon, 25 Oct 2010 16:36:20 +0000 (+0000) Subject: Fix issue10192 - add urlencode to urllib.parse.__all__ X-Git-Tag: v3.2a4~351 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0256b2a8d6658652306e3f5171a4659213ea8c4a;p=python Fix issue10192 - add urlencode to urllib.parse.__all__ --- diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py index 48b187ac6d..38efd502ab 100644 --- a/Lib/urllib/parse.py +++ b/Lib/urllib/parse.py @@ -31,8 +31,8 @@ import sys import collections __all__ = ["urlparse", "urlunparse", "urljoin", "urldefrag", - "urlsplit", "urlunsplit", "parse_qs", "parse_qsl", - "quote", "quote_plus", "quote_from_bytes", + "urlsplit", "urlunsplit", "urlencode", "parse_qs", + "parse_qsl", "quote", "quote_plus", "quote_from_bytes", "unquote", "unquote_plus", "unquote_to_bytes"] # A classification of schemes ('' means apply by default)