[issue1375] hotshot IndexError when loading stats

2010-07-31 Thread Georg Brandl
Georg Brandl added the comment: Duplicate of #1019882. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> hotshot start / stop stats bug ___ Python tracker _

[issue1375] hotshot IndexError when loading stats

2008-08-24 Thread Neal Norwitz
Changes by Neal Norwitz <[EMAIL PROTECTED]>: -- type: crash -> behavior ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list

[issue1375] hotshot IndexError when loading stats

2008-02-23 Thread Pedro Werneck
Pedro Werneck added the comment: Fixed by raising StopIteration when the stack is empty. -- nosy: +werneck Added file: http://bugs.python.org/file9510/issue_1375_hotshot.patch __ Tracker <[EMAIL PROTECTED]> _

[issue1375] hotshot IndexError when loading stats

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy priority: -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubs

[issue1375] hotshot IndexError when loading stats

2007-11-02 Thread Ruben Reifenberg
New submission from Ruben Reifenberg: Python 2.4.4 - 64 Bit This code reproduceably fails with IndexError: pop from empty list def start(x): x.start() if __name__ == "__main__": import hotshot prof = hotshot.Profile("test3_stats") start(prof) #pr