summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2022-02-15 16:39:28 (GMT)
committerGitHub <noreply@github.com>2022-02-15 16:39:28 (GMT)
commit1d81fdc4c004511c25f74db0e04ddbbb8a04ce6d (patch)
tree3d94c43aed60fe2942f1e0efa76fd44b7f1e4f7c /Lib/asyncio
parent9a40a2d99f703402c81c0444aa6d369eef60847c (diff)
downloadcpython-1d81fdc4c004511c25f74db0e04ddbbb8a04ce6d.zip
cpython-1d81fdc4c004511c25f74db0e04ddbbb8a04ce6d.tar.gz
cpython-1d81fdc4c004511c25f74db0e04ddbbb8a04ce6d.tar.bz2
bpo-46741: Update `asyncio.protocols.BufferedProtocol` docstring (31327)
The docstring for `BufferedProtocol` states that the class is still an "experimental API", but it has been considered stable since 3.8.
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/protocols.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/asyncio/protocols.py b/Lib/asyncio/protocols.py
index 69fa43e..09987b1 100644
--- a/Lib/asyncio/protocols.py
+++ b/Lib/asyncio/protocols.py
@@ -109,10 +109,6 @@ class Protocol(BaseProtocol):
class BufferedProtocol(BaseProtocol):
"""Interface for stream protocol with manual buffer control.
- Important: this has been added to asyncio in Python 3.7
- *on a provisional basis*! Consider it as an experimental API that
- might be changed or removed in Python 3.8.
-
Event methods, such as `create_server` and `create_connection`,
accept factories that return protocols that implement this interface.