Stop using proc.wait()
Popen.communicate() will do the wait for us and, unlike wait(), it properly handles decent amounts of data coming in on both stdout and stderr without locking up.
Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
Popen.communicate() will do the wait for us and, unlike wait(), it properly handles decent amounts of data coming in on both stdout and stderr without locking up.