summaryrefslogtreecommitdiffstats
path: root/Doc/faq/library.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-08-09 20:14:11 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-08-09 20:14:11 (GMT)
commitbd13f457610c1aac6c4994858c23e039e1652862 (patch)
tree5475808cd48310e7ddfbd0a58d0273c6ee66d791 /Doc/faq/library.rst
parent172e15fdd6605b87119cd79da67498809674e2c7 (diff)
downloadcpython-bd13f457610c1aac6c4994858c23e039e1652862.zip
cpython-bd13f457610c1aac6c4994858c23e039e1652862.tar.gz
cpython-bd13f457610c1aac6c4994858c23e039e1652862.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.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst
index 4b0c3d3..6b4f943 100644
--- a/Doc/faq/library.rst
+++ b/Doc/faq/library.rst
@@ -672,7 +672,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."::