This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients georg.brandl, gregory.p.smith, kaizhu, loewis
Date 2011-01-02.20:13:39
SpamBayes Score 3.1867117e-07
Marked as misclassified No
Message-id <1293999226.82.0.342913988125.issue10802@psf.upfronthosting.co.za>
In-reply-to
Content
If more people report this, there is still something Python could do:

- the configure test could verify that the running kernel actually implements the system call, and undefine HAVE_PIPE2 if that's not the case. Of course this would only help if the resulting binary only ever runs on the same system, and if the kernel is only ever upgraded.
- the test could be deferred to run-time, having subprocess_cloexec_pipe fall back to the pipe()/fcntl() branch if the system call fails with ENOSYS.
History
Date User Action Args
2011-01-02 20:13:46loewissetrecipients: + loewis, georg.brandl, gregory.p.smith, kaizhu
2011-01-02 20:13:46loewissetmessageid: <1293999226.82.0.342913988125.issue10802@psf.upfronthosting.co.za>
2011-01-02 20:13:40loewislinkissue10802 messages
2011-01-02 20:13:39loewiscreate