]> granicus.if.org Git - python/commit
- Issue #3300: make urllib.parse.[un]quote() default to UTF-8.
authorGuido van Rossum <guido@python.org>
Mon, 18 Aug 2008 21:44:30 +0000 (21:44 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 18 Aug 2008 21:44:30 +0000 (21:44 +0000)
commit52dbbb906804f36067ecbc8c89a00cdab545bdb2
tree1b923b821dc0547f6fa3e30401c7dac177a8f557
parent4171da5c9d899dc64cb15f177f05b9de05563148
- Issue #3300: make urllib.parse.[un]quote() default to UTF-8.
  Code contributed by Matt Giuca.  quote() now encodes the input
  before quoting, unquote() decodes after unquoting.  There are
  new arguments to change the encoding and errors settings.
  There are also new APIs to skip the encode/decode steps.
  [un]quote_plus() are also affected.
Doc/library/urllib.parse.rst
Lib/email/utils.py
Lib/test/test_cgi.py
Lib/test/test_http_cookiejar.py
Lib/test/test_urllib.py
Lib/test/test_wsgiref.py
Lib/urllib/parse.py
Misc/NEWS