diff options
author | Georg Brandl <georg@python.org> | 2010-08-14 15:48:49 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-08-14 15:48:49 (GMT) |
commit | 54ebb78171a8c75cbdc46196990386da80e2419e (patch) | |
tree | b8aaf7a94cd056c253150626cf6474d6a2117657 /Doc | |
parent | 9427dcfc31eea100efc4220a1a1e91c9718975c6 (diff) | |
download | cpython-54ebb78171a8c75cbdc46196990386da80e2419e.zip cpython-54ebb78171a8c75cbdc46196990386da80e2419e.tar.gz cpython-54ebb78171a8c75cbdc46196990386da80e2419e.tar.bz2 |
Typo fix.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/faq/library.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index 5965b6a..662f423 100644 --- a/Doc/faq/library.rst +++ b/Doc/faq/library.rst @@ -666,8 +666,8 @@ 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 a percent-encoded POST operations, query strings must be -quoted by using :func:`urllib.parse.urlencode`. For example to send name="Guy Steele, +Note that in general for percent-encoded POST operations, query strings must be +quoted using :func:`urllib.parse.urlencode`. For example to send name="Guy Steele, Jr.":: >>> import urllib.parse |