questions regarding stack size use for multi-threaded python programs

2009-11-09 Thread Eyal Gordon
Hi, background: we are using python 2.4.3 on CentOS 5.3 with many threads - and our shell's default stack size limit is set to 10240KB (i.e. ~10MB). we noticed that python's Threading module appears to create threads with this value as their stack size (we ran a sample program that creates 10

[issue5458] threading.Thread.join() documentation: missing 'from version' for RuntimeError exceptions

2009-03-09 Thread Eyal Gordon
New submission from Eyal Gordon eyal.gor...@gmail.com: In threading documentation: http://www.python.org/doc/current/library/threading.html?highlight=threading#threading.Thread.join It is not specified from which python version the join() call raises the RuntimeError exception. In python