]> granicus.if.org Git - python/commitdiff
Asyncio documentation: remove `self` from method signatures (GH-334)
authorMariatta <Mariatta@users.noreply.github.com>
Mon, 27 Feb 2017 13:44:15 +0000 (05:44 -0800)
committerGitHub <noreply@github.com>
Mon, 27 Feb 2017 13:44:15 +0000 (05:44 -0800)
Doc/library/asyncio-protocol.rst

index 3fbf51058673d9224e93b0dbbe8675e149e8e1c5..482ffbbed35b1ea358ae302738136d3bb0f11b6e 100644 (file)
@@ -36,7 +36,7 @@ BaseTransport
 
    Base class for transports.
 
-   .. method:: close(self)
+   .. method:: close()
 
       Close the transport.  If the transport has a buffer for outgoing
       data, buffered data will be flushed asynchronously.  No more data
@@ -44,7 +44,7 @@ BaseTransport
       protocol's :meth:`connection_lost` method will be called with
       :const:`None` as its argument.
 
-   .. method:: is_closing(self)
+   .. method:: is_closing()
 
       Return ``True`` if the transport is closing or is closed.
 
@@ -251,7 +251,7 @@ BaseSubprocessTransport
       if it hasn't returned, similarly to the
       :attr:`subprocess.Popen.returncode` attribute.
 
-   .. method:: kill(self)
+   .. method:: kill()
 
       Kill the subprocess, as in :meth:`subprocess.Popen.kill`.