Kaydet (Commit) 242690f8 authored tarafından Senthil Kumaran's avatar Senthil Kumaran

Remove the references of FTPS from the urllib Documentation. There is no support for it yet.

üst 2f92e783
...@@ -21,8 +21,7 @@ The :mod:`urllib.request` module defines the following functions: ...@@ -21,8 +21,7 @@ The :mod:`urllib.request` module defines the following functions:
:class:`Request` object. :class:`Request` object.
.. warning:: .. warning::
HTTPS (or FTPS) requests do not do any verification of the server's HTTPS requests do not do any verification of the server's certificate.
certificate.
*data* may be a string specifying additional data to send to the *data* may be a string specifying additional data to send to the
server, or ``None`` if no such data is needed. Currently HTTP server, or ``None`` if no such data is needed. Currently HTTP
...@@ -37,7 +36,7 @@ The :mod:`urllib.request` module defines the following functions: ...@@ -37,7 +36,7 @@ The :mod:`urllib.request` module defines the following functions:
The optional *timeout* parameter specifies a timeout in seconds for The optional *timeout* parameter specifies a timeout in seconds for
blocking operations like the connection attempt (if not specified, blocking operations like the connection attempt (if not specified,
the global default timeout setting will be used). This actually the global default timeout setting will be used). This actually
only works for HTTP, HTTPS, FTP and FTPS connections. only works for HTTP, HTTPS, and FTP connections.
This function returns a file-like object with two additional methods from This function returns a file-like object with two additional methods from
the :mod:`urllib.response` module the :mod:`urllib.response` module
...@@ -611,7 +610,7 @@ OpenerDirector Objects ...@@ -611,7 +610,7 @@ OpenerDirector Objects
optional *timeout* parameter specifies a timeout in seconds for blocking optional *timeout* parameter specifies a timeout in seconds for blocking
operations like the connection attempt (if not specified, the global default operations like the connection attempt (if not specified, the global default
timeout setting will be used). The timeout feature actually works only for timeout setting will be used). The timeout feature actually works only for
HTTP, HTTPS, FTP and FTPS connections). HTTP, HTTPS, and FTP connections).
.. method:: OpenerDirector.error(proto, *args) .. method:: OpenerDirector.error(proto, *args)
......
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