In article <[EMAIL PROTECTED]>, Mike Meyer <[EMAIL PROTECTED]> wrote: > >Here here. I find that threading typically introduces worse problems >than it purports to solve.
Depends what you're trying to do with threads. Threads are definitely a good technique for managing long-running work in a GUI application. Threads are also good for handling blocking I/O. Threads can in theory be useful for computational processing, but Python provides almost no support for that. -- Aahz ([EMAIL PROTECTED]) <*> http://www.pythoncraft.com/ "The joy of coding Python should be in seeing short, concise, readable classes that express a lot of action in a small amount of clear code -- not in reams of trivial code that bores the reader to death." --GvR -- http://mail.python.org/mailman/listinfo/python-list