Parallel ping problems python puzzler

Matimus mccredie at gmail.com
Mon Apr 2 13:42:32 EDT 2007


I wouldn't use threads for system calls. Checkout the subprocess
module instead. You can run multiple pipes at the same time
(subprocess.Popen). The python documentation for subprocess is pretty
good. There are a few examples. Actually, you don't even _need_ the
subprocess module, you can use os.popen for similar functionality.




More information about the Python-list mailing list