summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-10-19 18:37:08 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-10-19 18:37:08 (GMT)
commita41c9426853c422234be1a9182e9084347d2ca8f (patch)
tree0f0f47c06457a7ebc642ae6f56c546dcabda8550 /Doc/whatsnew
parentc6b4ef105e68165467de8424aab4b8b40fc458ed (diff)
downloadcpython-a41c9426853c422234be1a9182e9084347d2ca8f.zip
cpython-a41c9426853c422234be1a9182e9084347d2ca8f.tar.gz
cpython-a41c9426853c422234be1a9182e9084347d2ca8f.tar.bz2
Doc improvements suggested by Éric Araujo for the new 'HEAD' Request feature.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index eb62968..b433c6c 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -484,7 +484,7 @@ urllib
The :class:`~urllib.request.Request` class, now accepts a *method* argument
used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method
-should be used. For example, this will send an ``'HEAD'`` request::
+should be used. For example, this will send a ``'HEAD'`` request::
>>> urlopen(Request('http://www.python.org', method='HEAD'))