Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
bpo-40178: Convert the remaining os funtions to Argument Clinic.
Convert os.getgrouplist(), os.initgroups(), os.sendfile() and
os.get_terminal_size().
  • Loading branch information
serhiy-storchaka committed Apr 4, 2020
commit a8c436e389c042fb0b8dbe0ede25172dce06e9e6
2 changes: 1 addition & 1 deletion Doc/library/os.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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*.
Expand Down
Loading