File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -451,7 +451,7 @@ Streaming protocols with manual receive buffer control
451
451
452
452
.. versionadded :: 3.7
453
453
**Important: ** :class: `BufferedProtocol ` has been been added to
454
- asyncio in Python 3.7 *on a provisional basis *! Treat it as an
454
+ asyncio in Python 3.7 *on a provisional basis *! Consider it as an
455
455
experimental API that might be changed or removed in Python 3.8.
456
456
457
457
@@ -487,7 +487,8 @@ instances:
487
487
488
488
:meth: `get_buffer ` can be called an arbitrary number of times during
489
489
a connection. However, :meth: `eof_received ` is called at most once
490
- and, if called, :meth: `data_received ` won't be called after it.
490
+ and, if called, :meth: `get_buffer ` and :meth: `buffer_updated `
491
+ won't be called after it.
491
492
492
493
State machine:
493
494
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ class BufferedProtocol(BaseProtocol):
106
106
"""Interface for stream protocol with manual buffer control.
107
107
108
108
Important: this has been been added to asyncio in Python 3.7
109
- *on a provisional basis*! Treat it as an experimental API that
109
+ *on a provisional basis*! Consider it as an experimental API that
110
110
might be changed or removed in Python 3.8.
111
111
112
112
Event methods, such as `create_server` and `create_connection`,
You can’t perform that action at this time.
0 commit comments