[Python-checkins] CVS: python/dist/src/Lib popen2.py

Guido van Rossum guido@cnri.reston.va.us
Tue, 20 Apr 1999 08:27:33 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/Lib
In directory eric:/projects/python/develop/guido/src/Lib

Modified Files:
	popen2.py 
Log Message:
Calling _cleanup() does not guarantee that all processes have
terminated; this makes the final assert in the self-test code fail if
the parent runs faster than the children.  Fix this by calling wait()
on the remaining children instead.