From: Elvis Pranskevichus Date: Sat, 27 Jan 2018 22:11:10 +0000 (-0500) Subject: bpo-32622: Fix AbstractEventLoop.sendfile signature in documentation. (GH-5368) X-Git-Tag: v3.7.0b1~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee72ac0683e685b134f67cb0c6612c664ecadb65;p=python bpo-32622: Fix AbstractEventLoop.sendfile signature in documentation. (GH-5368) --- diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index fe162236e0..78ae18391f 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -546,7 +546,7 @@ Creating listening connections File Transferring ----------------- -.. coroutinemethod:: AbstractEventLoop.sendfile(sock, transport, \ +.. coroutinemethod:: AbstractEventLoop.sendfile(transport, file, \ offset=0, count=None, \ *, fallback=True)