diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-08-09 20:05:35 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-08-09 20:05:35 (GMT) |
commit | ea54b03b1e8c457b55db36ee7dc9300327c2a0b8 (patch) | |
tree | 8295aedc54bf9ecc7920da3a23854f801d0bd112 /Doc/faq/library.rst | |
parent | c3ce882c752d5b78062a526ea1a16ec2edd03144 (diff) | |
download | cpython-ea54b03b1e8c457b55db36ee7dc9300327c2a0b8.zip cpython-ea54b03b1e8c457b55db36ee7dc9300327c2a0b8.tar.gz cpython-ea54b03b1e8c457b55db36ee7dc9300327c2a0b8.tar.bz2 |
Merged revisions 83900 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r83900 | senthil.kumaran | 2010-08-10 01:23:52 +0530 (Tue, 10 Aug 2010) | 3 lines
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 1fc2389..b409bb6 100644 --- a/Doc/faq/library.rst +++ b/Doc/faq/library.rst @@ -669,7 +669,7 @@ Yes. Here's a simple example that uses httplib:: if reply != 200: sys.stdout.write(httpobj.getfile().read()) -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.quote`. For example to send name="Guy Steele, Jr.":: |