diff options
author | Giampaolo Rodola' <g.rodola@gmail.com> | 2014-04-24 16:09:21 (GMT) |
---|---|---|
committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2014-04-24 16:09:21 (GMT) |
commit | 409569b1cf7deff28159e9b202370aa3fe90fae1 (patch) | |
tree | 979f7c66a5b3504c57fdf1bd5b9d4c85d8cb2138 /Doc | |
parent | 0f4acc1ab172fec91bc65cd1b02241de9eb65c05 (diff) | |
download | cpython-409569b1cf7deff28159e9b202370aa3fe90fae1.zip cpython-409569b1cf7deff28159e9b202370aa3fe90fae1.tar.gz cpython-409569b1cf7deff28159e9b202370aa3fe90fae1.tar.bz2 |
update os.sendfile() doc signaling that cross-platform apps should not use headers, trailers and flags arguments
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index b7887f9..54b2542 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1087,6 +1087,9 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window All platforms support sockets as *out* file descriptor, and some platforms allow other types (e.g. regular file, pipe) as well. + Cross-platform applications should not use *headers*, *trailers* and *flags* + arguments. + Availability: Unix. .. versionadded:: 3.3 |