diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-04-18 16:14:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 16:14:10 (GMT) |
commit | 2b5603140c09766a7d4e8243a70d7144f684f6f9 (patch) | |
tree | a6705b01de36003264d9699b775da4459e5bc5df /Doc/library/os.rst | |
parent | 12446e6a605f066d837d3a595d0a73e4f3b43b65 (diff) | |
download | cpython-2b5603140c09766a7d4e8243a70d7144f684f6f9.zip cpython-2b5603140c09766a7d4e8243a70d7144f684f6f9.tar.gz cpython-2b5603140c09766a7d4e8243a70d7144f684f6f9.tar.bz2 |
bpo-40178: Convert the remaining os functions to Argument Clinic. (GH-19360)
Convert os.getgrouplist(), os.initgroups(), os.sendfile() and
os.get_terminal_size().
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index f27cf3d..943e676 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1266,7 +1266,7 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo .. function:: sendfile(out_fd, in_fd, offset, count) - sendfile(out_fd, in_fd, offset, count, [headers], [trailers], flags=0) + sendfile(out_fd, in_fd, offset, count, headers=(), trailers=(), flags=0) Copy *count* bytes from file descriptor *in_fd* to file descriptor *out_fd* starting at *offset*. |