@@ -87,10 +87,6 @@ and work with streams:
87
87
88
88
The *ssl_handshake_timeout * parameter.
89
89
90
- .. deprecated-removed :: 3.8 3.10
91
-
92
- `open_connection() ` is deprecated in favor of :func: `connect `.
93
-
94
90
.. coroutinefunction :: start_server(client_connected_cb, host=None, \
95
91
port=None, \* , loop=None, limit=2**16, \
96
92
family=socket.AF_UNSPEC, \
@@ -124,31 +120,6 @@ and work with streams:
124
120
125
121
The *ssl_handshake_timeout * and *start_serving * parameters.
126
122
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
152
123
153
124
.. rubric :: Unix Sockets
154
125
@@ -199,10 +170,6 @@ and work with streams:
199
170
200
171
The *path * parameter can now be a :term: `path-like object `
201
172
202
- .. deprecated-removed :: 3.8 3.10
203
-
204
- ``open_unix_connection() `` is deprecated if favor of :func: `connect_unix `.
205
-
206
173
207
174
.. coroutinefunction :: start_unix_server(client_connected_cb, path=None, \
208
175
\* , loop=None, limit=None, sock=None, \
@@ -225,10 +192,6 @@ and work with streams:
225
192
226
193
The *path * parameter can now be a :term: `path-like object `.
227
194
228
- .. deprecated-removed :: 3.8 3.10
229
-
230
- ``start_unix_server() `` is deprecated in favor of :class: `UnixStreamServer `.
231
-
232
195
233
196
---------
234
197
0 commit comments