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

This commit is contained in:
Jesus Cea 2014-10-20 16:19:33 +02:00
commit b6cdc1c01b

View file

@ -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.