From: Georg Brandl Date: Sat, 14 Aug 2010 15:48:49 +0000 (+0000) Subject: Typo fix. X-Git-Tag: v3.2a2~330 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54ebb78171a8c75cbdc46196990386da80e2419e;p=thirdparty%2FPython%2Fcpython.git Typo fix. --- diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index 5965b6a76fbc..662f423c6fbe 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