summaryrefslogtreecommitdiff
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 14:39:05 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 14:39:05 +0200
commita84f6c3dd3ef02bdbbc67b4cd1223749f3c39030 (patch)
treee8ac219e151be6bdf4ea4e3fbc229f247e0b7b4b /Lib/asyncio
parentd2ad5718ad955a13cf570bacad1d7800d995da33 (diff)
parentd65c9496da3485ac077fa8fd374b061afdd3605e (diff)
downloadcpython-git-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.gz
Issue #25523: Merge a-to-an corrections from 3.4.
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/sslproto.py2
-rw-r--r--Lib/asyncio/transports.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py
index 0a8c0900f8..9e08b6f88b 100644
--- a/Lib/asyncio/sslproto.py
+++ b/Lib/asyncio/sslproto.py
@@ -349,7 +349,7 @@ class _SSLProtocolTransport(transports._FlowControlMixin,
high-water limit. Neither value can be negative.
The defaults are implementation-specific. If only the
- high-water limit is given, the low-water limit defaults to a
+ high-water limit is given, the low-water limit defaults to an
implementation-specific value less than or equal to the
high-water limit. Setting high to zero forces low to zero as
well, and causes pause_writing() to be called whenever the
diff --git a/Lib/asyncio/transports.py b/Lib/asyncio/transports.py
index 70b323f2db..03099e3e54 100644
--- a/Lib/asyncio/transports.py
+++ b/Lib/asyncio/transports.py
@@ -62,7 +62,7 @@ class WriteTransport(BaseTransport):
high-water limit. Neither value can be negative.
The defaults are implementation-specific. If only the
- high-water limit is given, the low-water limit defaults to a
+ high-water limit is given, the low-water limit defaults to an
implementation-specific value less than or equal to the
high-water limit. Setting high to zero forces low to zero as
well, and causes pause_writing() to be called whenever the