On Fri, Dec 12, 2008 at 02:13, Sturla Molden <stu...@molden.no> wrote: > I genuinely think the use of threads should be discouraged. It leads to > code that are full of bugs and difficult to maintain - race conditions, > deadlocks, and livelocks are common pitfalls.
The use of threads for load balancing should be discouraged, yes. That is not what they are designed for. Threads are designed to allow blocking processes to go on in the background without blocking the main process. This, they are very useful for. Removing thread support would therefore be a very big mistake. It's needed, it has it's uses, just not the one *you* want. -- Lennart Regebro: Zope and Plone consulting. http://www.colliberty.com/ +33 661 58 14 64 _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com