From a41c9426853c422234be1a9182e9084347d2ca8f Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Thu, 20 Oct 2011 02:37:08 +0800 Subject: [PATCH] =?utf8?q?Doc=20improvements=20suggested=20by=20=C3=89ric?= =?utf8?q?=20Araujo=20for=20the=20new=20'HEAD'=20Request=20feature.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Doc/library/urllib.request.rst | 12 ++++++------ Doc/whatsnew/3.3.rst | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index b16475af98..b69b3b34c1 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -177,7 +177,7 @@ The following classes are provided: *method* should be a string that indicates the HTTP request method that will be used (e.g. ``'HEAD'``). Its value is stored in the - :attr:`Request.method` attribute and is used by :meth:`Request.get_method()`. + :attr:`~Request.method` attribute and is used by :meth:`get_method()`. .. versionchanged:: 3.3 :attr:`Request.method` argument is added to the Request class. @@ -379,11 +379,11 @@ request. .. attribute:: Request.method The HTTP request method to use. This value is used by - :meth:`Request.get_method` to override the computed HTTP request - method that would otherwise be returned. This attribute is - initialized with the value of the *method* argument passed to the constructor. + :meth:`~Request.get_method` to override the computed HTTP request + method that would otherwise be returned. This attribute is initialized with + the value of the *method* argument passed to the constructor. - ..versionadded:: 3.3 + .. versionadded:: 3.3 .. method:: Request.add_data(data) @@ -400,7 +400,7 @@ request. This is only meaningful for HTTP requests. .. versionchanged:: 3.3 - get_method now looks at the value of :attr:`Request.method` first. + get_method now looks at the value of :attr:`Request.method`. .. method:: Request.has_data() diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index eb62968606..b433c6c10e 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')) -- 2.50.1