Georg Brandl
7fe2c4af0e
#4355 : refer to urlencode in the correct module.
2008-12-05 07:32:56 +00:00
Facundo Batista
c469d4c3aa
Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module
...
to the urlparse one. Added a DeprecationWarning in the old module, it
will be deprecated in the future. Docs and tests updated.
2008-09-03 22:49:01 +00:00
Guido van Rossum
52dbbb9068
- 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.
2008-08-18 21:44:30 +00:00
Georg Brandl
0f7ede4569
Review the doc changes for the urllib package creation.
2008-06-23 11:23:31 +00:00
Senthil Kumaran
aca8fd7a9d
Documentation updates for urllib package. Modified the documentation for the
...
urllib,urllib2 -> urllib.request,urllib.error
urlparse -> urllib.parse
RobotParser -> urllib.robotparser
Updated tutorial references and other module references (http.client.rst,
ftplib.rst,contextlib.rst)
Updated the examples in the urllib2-howto
Addresses Issue3142.
2008-06-23 04:41:59 +00:00