Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded variations. Docs changed.

This commit is contained in:
Senthil Kumaran 2010-08-09 19:53:52 +00:00
parent 87082ee14d
commit f0769e8bd0
4 changed files with 6 additions and 6 deletions

View file

@ -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."::