Re: How to know if a module is thread-safe

2008-04-17 Thread Michael Torrie
Jérémy Wagner wrote: > Hi, I recently tried to use the subprocess module > within a threading.Thread class, but it appears the module > is not thread-safe. http://bugs.python.org/issue1731717 Pretty bad bug, really, since subprocess is supposed to be the replacement for all the other mechanisms l

How to know if a module is thread-safe

2008-04-17 Thread Jérémy Wagner
Hi, I recently tried to use the subprocess module within a threading.Thread class, but it appears the module is not thread-safe. What is the policy of python regarding thread-safety of a module ? -- http://mail.python.org/mailman/listinfo/python-list