From: Berker Peksag Date: Mon, 7 Nov 2016 20:36:14 +0000 (+0300) Subject: Issue #28088: Don't include self in method signature X-Git-Tag: v3.6.0b4~139^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ebd6feeaecbcd82ec206df9c3a2d248b30b3c40;p=python Issue #28088: Don't include self in method signature Also update versionadded directive to 3.5.3. --- diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index 873f8bbc90..c0342f7f2f 100644 --- a/Doc/library/asyncio-protocol.rst +++ b/Doc/library/asyncio-protocol.rst @@ -87,18 +87,18 @@ BaseTransport - ``'subprocess'``: :class:`subprocess.Popen` instance - .. method:: set_protocol(self, protocol) + .. method:: set_protocol(protocol) Set a new protocol. Switching protocol should only be done when both protocols are documented to support the switch. - .. versionadded:: 3.6.0 + .. versionadded:: 3.5.3 - .. method:: get_protocol(self) + .. method:: get_protocol Return the current protocol. - .. versionadded:: 3.6.0 + .. versionadded:: 3.5.3 .. versionchanged:: 3.5.1 ``'ssl_object'`` info was added to SSL sockets.