request to be ``POST`` rather than ``GET``. Deprecated in 3.3, use
:attr:`Request.data`.
- .. deprecated:: 3.3
+ .. deprecated-removed:: 3.3 3.4
.. method:: Request.has_data()
Return whether the instance has a non-\ ``None`` data. Deprecated in 3.3,
use :attr:`Request.data`.
- .. deprecated:: 3.3
+ .. deprecated-removed:: 3.3 3.4
.. method:: Request.get_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()
Return the type of the URL --- also known as the scheme. Deprecated in 3.3,
use :attr:`Request.type`.
- .. deprecated:: 3.3
+ .. deprecated-removed:: 3.3 3.4
.. method:: Request.get_host()
Return the host to which a connection will be made. Deprecated in 3.3, use
:attr:`Request.host`.
- .. deprecated:: 3.3
+ .. deprecated-removed:: 3.3 3.4
.. method:: Request.get_selector()
Return the selector --- the part of the URL that is sent to the server.
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)
:rfc:`2965`. See the documentation for the :class:`Request` constructor.
Deprecated in 3.3, use :attr:`Request.origin_req_host`.
- .. deprecated:: 3.3
+ .. deprecated-removed:: 3.3 3.4
.. method:: Request.is_unverifiable()
documentation for the :class:`Request` constructor. Deprecated in 3.3, use
:attr:`Request.unverifiable`.
- .. deprecated:: 3.3
+ .. deprecated-removed:: 3.3 3.4
.. _opener-director-objects: