[Python-checkins] r85837 - python/branches/py3k/Lib/urllib/parse.py

senthil.kumaran python-checkins at python.org
Mon Oct 25 18:36:21 CEST 2010


Author: senthil.kumaran
Date: Mon Oct 25 18:36:20 2010
New Revision: 85837

Log:
Fix issue10192 - add urlencode to urllib.parse.__all__



Modified:
   python/branches/py3k/Lib/urllib/parse.py

Modified: python/branches/py3k/Lib/urllib/parse.py
==============================================================================
--- python/branches/py3k/Lib/urllib/parse.py	(original)
+++ python/branches/py3k/Lib/urllib/parse.py	Mon Oct 25 18:36:20 2010
@@ -31,8 +31,8 @@
 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)


More information about the Python-checkins mailing list