[issue20113] os.readv() and os.writev() don't raise an OSError on readv()/writev() failure

2014-01-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1993a8ec3f19 by Victor Stinner in branch '3.3': Issue #20113: Fix test_posix on OpenIndiana http://hg.python.org/cpython/rev/1993a8ec3f19 New changeset f1f707dd7cae by Victor Stinner in branch 'default': (Merge 3.3) Issue #20113: Fix test_posix on O

[issue20113] os.readv() and os.writev() don't raise an OSError on readv()/writev() failure

2014-01-08 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue20113] os.readv() and os.writev() don't raise an OSError on readv()/writev() failure

2014-01-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1437f499024d by Victor Stinner in branch '3.3': Issue #20113: os.readv() and os.writev() now raise an OSError exception on http://hg.python.org/cpython/rev/1437f499024d New changeset cd50efdce294 by Victor Stinner in branch 'default': (Merge 3.3) Is

[issue20113] os.readv() and os.writev() don't raise an OSError on readv()/writev() failure

2014-01-03 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +rosslagerwall ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue20113] os.readv() and os.writev() don't raise an OSError on readv()/writev() failure

2014-01-03 Thread STINNER Victor
STINNER Victor added the comment: os.readv() and os.writev() were added in Python 3.3 with the issue #10812. -- keywords: +patch nosy: +serhiy.storchaka Added file: http://bugs.python.org/file33303/readv_writev.patch ___ Python tracker

[issue20113] os.readv() and os.writev() don't raise an OSError on readv()/writev() failure

2014-01-03 Thread STINNER Victor
New submission from STINNER Victor: Example: $ python3 Python 3.3.2 (default, Nov 8 2013, 13:38:57) [GCC 4.8.2 20131017 (Red Hat 4.8.2-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> os.fstat(19) Traceback (most recent call last): File ""