Commit b6cdc1c0 authored by Jesus Cea's avatar Jesus Cea

MERGE: Docs: 'os.pwrite()' needs bytes, not strings

parents 35c78ba7 67503c5f
...@@ -1056,10 +1056,10 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window ...@@ -1056,10 +1056,10 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window
.. versionadded:: 3.3 .. versionadded:: 3.3
.. function:: pwrite(fd, string, offset) .. function:: pwrite(fd, str, offset)
Write *string* to a file descriptor, *fd*, from *offset*, leaving the file Write *bytestring* to a file descriptor, *fd*, from *offset*,
offset unchanged. leaving the file offset unchanged.
Availability: Unix. Availability: Unix.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment