[issue9609] make cProfile multi-stack aware

2012-03-26 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: I've presented the patch, but no one has voiced an opinion on it. -- ___ Python tracker ___

[issue9609] make cProfile multi-stack aware

2012-03-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Is there progress on it? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue9609] make cProfile multi-stack aware

2010-09-27 Thread Todd Whiteman
Changes by Todd Whiteman : -- nosy: +twhitema ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue9609] make cProfile multi-stack aware

2010-09-09 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : -- nosy: +georg.brandl stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue9609] make cProfile multi-stack aware

2010-09-09 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Here is a new patch. When 'allthreads' is specified to cProfile.Profile.enable(), profling is enabled on all threads. The testsuite tests to see that all threads do indeed register, it does not attempt to validate the timings. It turns it on for all

[issue9609] make cProfile multi-stack aware

2010-09-09 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : -- nosy: +stutzbach ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue9609] make cProfile multi-stack aware

2010-09-09 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue9609] make cProfile multi-stack aware

2010-08-15 Thread Kristján Valur Jónsson
New submission from Kristján Valur Jónsson : One of the problems with the profiling modules provided with Python is that they are not useful in the presence of multiple threads. This is because time spent in a different thread may be falsely attributed to some random place in a thread being p