Skip to content
Closed
Changes from all commits
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
6 changes: 3 additions & 3 deletions Doc/library/os.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1087,10 +1087,10 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
.. versionadded:: 3.3


.. function:: pwrite(fd, str, offset)
.. function:: pwrite(fd, buffer, offset)

Write *bytestring* to a file descriptor, *fd*, from *offset*,
leaving the file offset unchanged.
Write *buffer* to a file descriptor, *fd*, from *offset*,
leaving the file offset unchanged. Return the number of bytes actually written.

Availability: Unix.

Expand Down