From 0256b2a8d6658652306e3f5171a4659213ea8c4a Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Mon, 25 Oct 2010 16:36:20 +0000 Subject: Fix issue10192 - add urlencode to urllib.parse.__all__ --- Lib/urllib/parse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py index 48b187a..38efd50 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) -- cgit v0.12