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 flox
Recipients abo, astrand, benjamin.peterson, christian.heimes, djc, dsagal, exarkun, flox, gjb1002, gregory.p.smith, grossetti, gvanrossum, kanaka, nnorwitz, oefe, r.david.murray, siemer, tom_culliton, yonas
Date 2010-03-08.14:52:37
SpamBayes Score 2.9800522e-09
Marked as misclassified No
Message-id <1268059959.05.0.204867433295.issue1731717@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import subprocess, signal
>>> signal.signal(signal.SIGCLD, signal.SIG_IGN)
0
>>> subprocess.Popen(['echo','foo']).wait()
foo
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "./Lib/subprocess.py", line 1229, in wait
    pid, sts = _eintr_retry_call(os.waitpid, self.pid, 0)
  File "./Lib/subprocess.py", line 482, in _eintr_retry_call
    return func(*args)
OSError: [Errno 10] No child processes


You're right, I fixed something giving the same ECHILD error in multiprocessing. But it was not related.
History
Date User Action Args
2010-03-08 14:52:39floxsetrecipients: + flox, gvanrossum, nnorwitz, abo, gregory.p.smith, astrand, siemer, exarkun, gjb1002, oefe, christian.heimes, dsagal, tom_culliton, benjamin.peterson, djc, grossetti, r.david.murray, yonas, kanaka
2010-03-08 14:52:39floxsetmessageid: <1268059959.05.0.204867433295.issue1731717@psf.upfronthosting.co.za>
2010-03-08 14:52:37floxlinkissue1731717 messages
2010-03-08 14:52:37floxcreate