From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 21 Aug 2020 12:19:58 +0000 (-0700) Subject: bpo-41572: Fix grammar in BaseTransport.close docstring (GH-21914) (GH-21930) X-Git-Tag: v3.8.6rc1~28 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1370d9dd9fbd71e9d3c250c8e6644e0ee6534fca;p=thirdparty%2FPython%2Fcpython.git bpo-41572: Fix grammar in BaseTransport.close docstring (GH-21914) (GH-21930) Fix grammar in BaseTransport.close docstring. https://bugs.python.org/issue41572 Signed-off-by: Cleber Rosa (cherry picked from commit 1afb42cfa82dad0ddd726f59c6c5fcb3962314db) Co-authored-by: Cleber Rosa --- diff --git a/Lib/asyncio/transports.py b/Lib/asyncio/transports.py index 513b1c024a4d..45e155c94cad 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