Repeated calls to system() seem to cause no problem here.
I ran the following program:
import os
for i in xrange(10000):
assert os.system("true") == 0
in around 25 seconds, the 'for' loop completed, and the 'true' command
always returned 0 from system, as expected.
Jeff
pgpfiKCSin0jr.pgp
Description: PGP signature
-- http://mail.python.org/mailman/listinfo/python-list
