[issue27021] It is not documented that os.writev() suffer from SC_IOV_MAX

2016-06-18 Thread Senthil Kumaran
Senthil Kumaran added the comment: Марк, it's documented now. Thank you for the patch. -- nosy: +orsenthil resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue27021] It is not documented that os.writev() suffer from SC_IOV_MAX

2016-06-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset eddbf14f451b by Senthil Kumaran in branch '3.5': issue27021 - Document SC_IOV_MAX limitation imposed by OS on os.writev. https://hg.python.org/cpython/rev/eddbf14f451b New changeset 0b1cd695e7aa by Senthil Kumaran in branch 'default': [merge from

[issue27021] It is not documented that os.writev() suffer from SC_IOV_MAX

2016-06-18 Thread Марк Коренберг
Марк Коренберг added the comment: Attached the patch. Please review. -- keywords: +patch Added file: http://bugs.python.org/file43449/writev_doc.patch ___ Python tracker

[issue27021] It is not documented that os.writev() suffer from SC_IOV_MAX

2016-06-18 Thread Марк Коренберг
Марк Коренберг added the comment: Oops. It is documented in latest version... -- ___ Python tracker ___ ___

[issue27021] It is not documented that os.writev() suffer from SC_IOV_MAX

2016-06-18 Thread Марк Коренберг
Марк Коренберг added the comment: Also it is not documented that os.writev() is not awailable on Windows (!) Also see issue27346 -- ___ Python tracker

[issue27021] It is not documented that os.writev() suffer from SC_IOV_MAX

2016-05-25 Thread Martin Panter
Changes by Martin Panter : -- versions: -Python 3.3, Python 3.4 ___ Python tracker ___

[issue27021] It is not documented that os.writev() suffer from SC_IOV_MAX

2016-05-23 Thread Jim Jewett
Changes by Jim Jewett : -- stage: -> needs patch ___ Python tracker ___ ___

[issue27021] It is not documented that os.writev() suffer from SC_IOV_MAX

2016-05-14 Thread Марк Коренберг
New submission from Марк Коренберг: Really, os.writev() suffer from SC_IOV_MAX. This is documented for socket.sendmsg(), but not for os.writev(): The operating system may set a limit (sysconf() value SC_IOV_MAX) on the number of buffers that can be used. -- assignee: docs@python