diff options
author | Yury Selivanov <yury@magic.io> | 2018-01-29 04:51:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 04:51:08 (GMT) |
commit | 07627e9a6a5f418354ff3dc99a0f36bc5b79dcd8 (patch) | |
tree | 6ea22b7bf243aba860d34de638fe223e52315513 /Lib/asyncio | |
parent | 9ee1bf9ab5af8233ed8ec5c53d12a29dc1bd9c9d (diff) | |
download | cpython-07627e9a6a5f418354ff3dc99a0f36bc5b79dcd8.zip cpython-07627e9a6a5f418354ff3dc99a0f36bc5b79dcd8.tar.gz cpython-07627e9a6a5f418354ff3dc99a0f36bc5b79dcd8.tar.bz2 |
bpo-32251: Fix docs (#5408)
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/protocols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/protocols.py b/Lib/asyncio/protocols.py index 9e786dc..8904478 100644 --- a/Lib/asyncio/protocols.py +++ b/Lib/asyncio/protocols.py @@ -106,7 +106,7 @@ class BufferedProtocol(BaseProtocol): """Interface for stream protocol with manual buffer control. Important: this has been been added to asyncio in Python 3.7 - *on a provisional basis*! Treat it as an experimental API that + *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`, |