Skip to content

Commit 4fb43ff

Browse files
committed
Revert "bpo-37105: Add deprecated-remove information on stream doc (python#13672)"
This reverts commit ed9f356.
1 parent ddbd854 commit 4fb43ff

File tree

1 file changed

+0
-37
lines changed

1 file changed

+0
-37
lines changed

Doc/library/asyncio-stream.rst

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,6 @@ and work with streams:
8787

8888
The *ssl_handshake_timeout* parameter.
8989

90-
.. deprecated-removed:: 3.8 3.10
91-
92-
`open_connection()` is deprecated in favor of :func:`connect`.
93-
9490
.. coroutinefunction:: start_server(client_connected_cb, host=None, \
9591
port=None, \*, loop=None, limit=2**16, \
9692
family=socket.AF_UNSPEC, \
@@ -124,31 +120,6 @@ and work with streams:
124120

125121
The *ssl_handshake_timeout* and *start_serving* parameters.
126122

127-
.. deprecated-removed:: 3.8 3.10
128-
129-
`start_server()` is deprecated if favor of :class:`StreamServer`
130-
131-
.. coroutinefunction:: connect_read_pipe(pipe, *, limit=2**16)
132-
133-
Takes a :term:`file-like object <file object>` *pipe* to return a
134-
:class:`Stream` object of the mode :attr:`StreamMode.READ` that has
135-
similar API of :class:`StreamReader`. It can also be used as an async context manager.
136-
137-
*limit* determines the buffer size limit used by the returned :class:`Stream`
138-
instance. By default the limit is set to 64 KiB.
139-
140-
.. versionadded:: 3.8
141-
142-
.. coroutinefunction:: connect_write_pipe(pipe, *, limit=2**16)
143-
144-
Takes a :term:`file-like object <file object>` *pipe* to return a
145-
:class:`Stream` object of the mode :attr:`StreamMode.WRITE` that has
146-
similar API of :class:`StreamWriter`. It can also be used as an async context manager.
147-
148-
*limit* determines the buffer size limit used by the returned :class:`Stream`
149-
instance. By default the limit is set to 64 KiB.
150-
151-
.. versionadded:: 3.8
152123

153124
.. rubric:: Unix Sockets
154125

@@ -199,10 +170,6 @@ and work with streams:
199170

200171
The *path* parameter can now be a :term:`path-like object`
201172

202-
.. deprecated-removed:: 3.8 3.10
203-
204-
``open_unix_connection()`` is deprecated if favor of :func:`connect_unix`.
205-
206173

207174
.. coroutinefunction:: start_unix_server(client_connected_cb, path=None, \
208175
\*, loop=None, limit=None, sock=None, \
@@ -225,10 +192,6 @@ and work with streams:
225192

226193
The *path* parameter can now be a :term:`path-like object`.
227194

228-
.. deprecated-removed:: 3.8 3.10
229-
230-
``start_unix_server()`` is deprecated in favor of :class:`UnixStreamServer`.
231-
232195

233196
---------
234197

0 commit comments

Comments
 (0)