diff options
author | Elvis Pranskevichus <elvis@magic.io> | 2018-01-27 17:11:10 -0500 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-01-27 17:11:10 -0500 |
commit | ee72ac0683e685b134f67cb0c6612c664ecadb65 (patch) | |
tree | 0600d32974c97a68e6e09c32289e4ebb57bd289d | |
parent | 0f54e00e9633638a8da7f35b2f65556396eedfd0 (diff) | |
download | cpython-git-ee72ac0683e685b134f67cb0c6612c664ecadb65.tar.gz |
bpo-32622: Fix AbstractEventLoop.sendfile signature in documentation. (GH-5368)
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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) |