[issue22309] distutils/spawn.py handle fork() not implemented.

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If

[issue22309] distutils/spawn.py handle fork() not implemented.

2014-08-31 Thread John Malmberg
John Malmberg added the comment: Note that Python directly supports Unixes which supply fork() and Microsoft Windows that supplies spawn*() methods. So as long as a platform supports either the fork() or the the Microsoft Windows spawn() methods, there should not be barriers implementing

[issue22309] distutils/spawn.py handle fork() not implemented.

2014-08-30 Thread John Malmberg
New submission from John Malmberg: Distutils currently can not handle a Posix platform that does not implement fork(). This patch retries with the _spawn_nt to use the spawn() methods if fork() is not implemented. A platform that does not implement fork() can provide spawn*() methods for

[issue22309] distutils/spawn.py handle fork() not implemented.

2014-08-30 Thread Ned Deily
Ned Deily added the comment: As far as I can tell, a Posix-compliant system is required to implement fork(). Which platform doesn't? -- nosy: +ned.deily ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22309

[issue22309] distutils/spawn.py handle fork() not implemented.

2014-08-30 Thread John Malmberg
John Malmberg added the comment: There are multiple degrees of Posix compliance. While X/Open documents the Posix requirements for implementing fork(), so far I have not found anything that requires that fork() be present. Configure tests for c-python also test for the presence of fork().