Re: Defunct Processes With subprocess.Popen

2005-05-12 Thread John Abel
Mike Meyer wrote: >John Abel <[EMAIL PROTECTED]> writes: > > > >>Hi! >> >>I'm currently writing a script which launches external programs, but >>it keeps leaving zombie/defunct processes behind, until I kill the >>launching script, which is a bit of a pain, as it's supposed to be a >>daemon. Th

Re: Defunct Processes With subprocess.Popen

2005-05-11 Thread Mike Meyer
John Abel <[EMAIL PROTECTED]> writes: > Hi! > > I'm currently writing a script which launches external programs, but > it keeps leaving zombie/defunct processes behind, until I kill the > launching script, which is a bit of a pain, as it's supposed to be a > daemon. The code I'm using is: > > new

Defunct Processes With subprocess.Popen

2005-05-11 Thread John Abel
Hi! I'm currently writing a script which launches external programs, but it keeps leaving zombie/defunct processes behind, until I kill the launching script, which is a bit of a pain, as it's supposed to be a daemon. The code I'm using is: newPid = subprocess.Popen( cmdLine[ 1: ], executable=