diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-08-09 19:53:52 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-08-09 19:53:52 (GMT) |
commit | f0769e8bd0cc4bad1641e5558787a6006d7b63b2 (patch) | |
tree | cc8be666ca128ffe6f510c2fa4a1c92e8eb7cb3d /Doc/faq/library.rst | |
parent | 87082ee14dd970526e65459804365a5699c7dd9a (diff) | |
download | cpython-f0769e8bd0cc4bad1641e5558787a6006d7b63b2.zip cpython-f0769e8bd0cc4bad1641e5558787a6006d7b63b2.tar.gz cpython-f0769e8bd0cc4bad1641e5558787a6006d7b63b2.tar.bz2 |
Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded variations. Docs changed.
Diffstat (limited to 'Doc/faq/library.rst')
-rw-r--r-- | Doc/faq/library.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index 2824330..5965b6a 100644 --- a/Doc/faq/library.rst +++ b/Doc/faq/library.rst @@ -666,7 +666,7 @@ Yes. Here's a simple example that uses urllib.request:: '/cgi-bin/some-cgi-script', data=qs) msg, hdrs = req.read(), req.info() -Note that in general for URL-encoded POST operations, query strings must be +Note that in general for a percent-encoded POST operations, query strings must be quoted by using :func:`urllib.parse.urlencode`. For example to send name="Guy Steele, Jr.":: |