summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-03-28 19:14:26 (GMT)
committerGitHub <noreply@github.com>2018-03-28 19:14:26 (GMT)
commitbac2d5ba30339298db7d4caa9c8cd31d807cf081 (patch)
treed08e103d7d7f2ef41b56c2e7d8c360663bf7780e /Lib/asyncio
parentaa50bf08e64f49d57917ab0b1aadf4308a3168a6 (diff)
downloadcpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.zip
cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.tar.gz
cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.tar.bz2
Fix duplicating words words. (GH-6296)
Most of them have been added in 3.7.
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/protocols.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/protocols.py b/Lib/asyncio/protocols.py
index 8904478..dc298a8 100644
--- a/Lib/asyncio/protocols.py
+++ b/Lib/asyncio/protocols.py
@@ -105,7 +105,7 @@ class Protocol(BaseProtocol):
class BufferedProtocol(BaseProtocol):
"""Interface for stream protocol with manual buffer control.
- Important: this has been been added to asyncio in Python 3.7
+ 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.