Commit cd3bb8b7 authored by Senthil Kumaran's avatar Senthil Kumaran

#17474 - Mark the deprecated Request methods as deprecated-removed. Review by Ezio Melotti

parent f47e77f3
...@@ -478,7 +478,7 @@ request. ...@@ -478,7 +478,7 @@ request.
request to be ``POST`` rather than ``GET``. Deprecated in 3.3, use request to be ``POST`` rather than ``GET``. Deprecated in 3.3, use
:attr:`Request.data`. :attr:`Request.data`.
.. deprecated:: 3.3 .. deprecated-removed:: 3.3 3.4
.. method:: Request.has_data() .. method:: Request.has_data()
...@@ -486,14 +486,14 @@ request. ...@@ -486,14 +486,14 @@ request.
Return whether the instance has a non-\ ``None`` data. Deprecated in 3.3, Return whether the instance has a non-\ ``None`` data. Deprecated in 3.3,
use :attr:`Request.data`. use :attr:`Request.data`.
.. deprecated:: 3.3 .. deprecated-removed:: 3.3 3.4
.. method:: Request.get_data() .. method:: Request.get_data()
Return the instance's data. Deprecated in 3.3, use :attr:`Request.data`. Return the instance's data. Deprecated in 3.3, use :attr:`Request.data`.
.. deprecated:: 3.3 .. deprecated-removed:: 3.3 3.4
.. method:: Request.get_type() .. method:: Request.get_type()
...@@ -501,7 +501,7 @@ request. ...@@ -501,7 +501,7 @@ request.
Return the type of the URL --- also known as the scheme. Deprecated in 3.3, Return the type of the URL --- also known as the scheme. Deprecated in 3.3,
use :attr:`Request.type`. use :attr:`Request.type`.
.. deprecated:: 3.3 .. deprecated-removed:: 3.3 3.4
.. method:: Request.get_host() .. method:: Request.get_host()
...@@ -509,7 +509,7 @@ request. ...@@ -509,7 +509,7 @@ request.
Return the host to which a connection will be made. Deprecated in 3.3, use Return the host to which a connection will be made. Deprecated in 3.3, use
:attr:`Request.host`. :attr:`Request.host`.
.. deprecated:: 3.3 .. deprecated-removed:: 3.3 3.4
.. method:: Request.get_selector() .. method:: Request.get_selector()
...@@ -517,7 +517,7 @@ request. ...@@ -517,7 +517,7 @@ request.
Return the selector --- the part of the URL that is sent to the server. Return the selector --- the part of the URL that is sent to the server.
Deprecated in 3.3, use :attr:`Request.selector`. Deprecated in 3.3, use :attr:`Request.selector`.
.. deprecated:: 3.3 .. deprecated-removed:: 3.3 3.4
.. method:: Request.get_header(header_name, default=None) .. method:: Request.get_header(header_name, default=None)
...@@ -538,7 +538,7 @@ request. ...@@ -538,7 +538,7 @@ request.
:rfc:`2965`. See the documentation for the :class:`Request` constructor. :rfc:`2965`. See the documentation for the :class:`Request` constructor.
Deprecated in 3.3, use :attr:`Request.origin_req_host`. Deprecated in 3.3, use :attr:`Request.origin_req_host`.
.. deprecated:: 3.3 .. deprecated-removed:: 3.3 3.4
.. method:: Request.is_unverifiable() .. method:: Request.is_unverifiable()
...@@ -547,7 +547,7 @@ request. ...@@ -547,7 +547,7 @@ request.
documentation for the :class:`Request` constructor. Deprecated in 3.3, use documentation for the :class:`Request` constructor. Deprecated in 3.3, use
:attr:`Request.unverifiable`. :attr:`Request.unverifiable`.
.. deprecated:: 3.3 .. deprecated-removed:: 3.3 3.4
.. _opener-director-objects: .. _opener-director-objects:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment