[issue10802] python3.2 AFTER b2 release has subprocess.Popen broken under colinux/windows

Martin v. Löwis report at bugs.python.org
Sun Jan 2 21:13:46 CET 2011


Martin v. Löwis <martin at v.loewis.de> added the comment:

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.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue10802>
_______________________________________


More information about the Python-bugs-list mailing list