diff options
author | Emmanuel Arias <emmanuelarias30@gmail.com> | 2019-05-31 20:48:57 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2019-05-31 20:48:57 (GMT) |
commit | ed9f3562b637a59b9000abbceee5ae369d35444d (patch) | |
tree | a809185d45d3e2171cafe048a40fc59cbaf90f15 | |
parent | a747c3a5edf21fa5670bc30f5e1d804de89ebf62 (diff) | |
download | cpython-ed9f3562b637a59b9000abbceee5ae369d35444d.zip cpython-ed9f3562b637a59b9000abbceee5ae369d35444d.tar.gz cpython-ed9f3562b637a59b9000abbceee5ae369d35444d.tar.bz2 |
bpo-37105: Add deprecated-remove information on stream doc (#13672)
* Add deprecated-remove information on stream doc
According to the code on streams.py the functions:
``open_connection()``, ``start_server()``, ``open_unix_connection()``,
``start_unix_server()`` are deprecated. I infor that on
documentation.
-rw-r--r-- | Doc/library/asyncio-stream.rst | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Doc/library/asyncio-stream.rst b/Doc/library/asyncio-stream.rst index e735b81..28ca5d5 100644 --- a/Doc/library/asyncio-stream.rst +++ b/Doc/library/asyncio-stream.rst @@ -67,6 +67,10 @@ and work with streams: The *ssl_handshake_timeout* parameter. + .. deprecated-removed:: 3.8 3.10 + + `open_connection()` is deprecated in favor of `connect()`. + .. coroutinefunction:: start_server(client_connected_cb, host=None, \ port=None, \*, loop=None, limit=None, \ family=socket.AF_UNSPEC, \ @@ -100,6 +104,10 @@ and work with streams: The *ssl_handshake_timeout* and *start_serving* parameters. + .. deprecated-removed:: 3.8 3.10 + + `start_server()` is deprecated if favor of `StreamServer()` + .. rubric:: Unix Sockets @@ -124,6 +132,10 @@ and work with streams: The *path* parameter can now be a :term:`path-like object` + .. deprecated-removed:: 3.8 3.10 + + `open_unix_connection()` is deprecated if favor of `connect_unix()`. + .. coroutinefunction:: start_unix_server(client_connected_cb, path=None, \ \*, loop=None, limit=None, sock=None, \ @@ -146,6 +158,10 @@ and work with streams: The *path* parameter can now be a :term:`path-like object`. + .. deprecated-removed:: 3.8 3.10 + + `start_unix_server()` is deprecated in favor of `UnixStreamServer()`. + --------- |