From: Cleber Rosa Date: Thu, 20 Aug 2020 12:40:01 +0000 (-0400) Subject: bpo-41572: Fix grammar in BaseTransport.close docstring (GH-21914) X-Git-Tag: v3.10.0a1~234 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1afb42cfa82dad0ddd726f59c6c5fcb3962314db;p=thirdparty%2FPython%2Fcpython.git bpo-41572: Fix grammar in BaseTransport.close docstring (GH-21914) Fix grammar in BaseTransport.close docstring. https://bugs.python.org/issue41572 Signed-off-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