diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-08-21 12:19:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-21 12:19:40 (GMT) |
commit | a2d00f04733491a56abec45e7a20fb42282bb4d1 (patch) | |
tree | c55894c4664f86d4a3916b5a3e15a52a970cf8c3 | |
parent | 3949827a54f79266a2f1434d187c8ac4905db316 (diff) | |
download | cpython-a2d00f04733491a56abec45e7a20fb42282bb4d1.zip cpython-a2d00f04733491a56abec45e7a20fb42282bb4d1.tar.gz cpython-a2d00f04733491a56abec45e7a20fb42282bb4d1.tar.bz2 |
bpo-41572: Fix grammar in BaseTransport.close docstring (GH-21914) (#21929)
Fix grammar in BaseTransport.close docstring.
https://bugs.python.org/issue41572
Signed-off-by: Cleber Rosa <crosa@redhat.com>
(cherry picked from commit 1afb42cfa82dad0ddd726f59c6c5fcb3962314db)
Co-authored-by: Cleber Rosa <cleber.gnu@gmail.com>
-rw-r--r-- | Lib/asyncio/transports.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/transports.py b/Lib/asyncio/transports.py index 513b1c0..45e155c 100644 --- a/Lib/asyncio/transports.py +++ b/Lib/asyncio/transports.py @@ -29,8 +29,8 @@ class BaseTransport: Buffered data will be flushed asynchronously. No more data will be received. After all buffered data is flushed, the - protocol's connection_lost() method will (eventually) called - with None as its argument. + protocol's connection_lost() method will (eventually) be + called with None as its argument. """ raise NotImplementedError |