This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2009-12-13.19:11:29
SpamBayes Score 0.0005137096
Marked as misclassified No
Message-id <1260731491.61.0.262120607262.issue7494@psf.upfronthosting.co.za>
In-reply-to
Content
The crash is an Heisenbug (read object which just has been destroyed, 
sometimes it works, sometimes it crash), so it's not easy the write a 
short example showing the crash.

The code looks like:

   import cProfile
   prof = cProfile.Profile()
   prof.enable()
   prof.clear()

The next instruction will be analyzed by the profiler, but the profiler 
will crash in: ptrace_enter_call()->initContext()->getSubEntry()-
>Rotating_Tree_Get(&caller->calls, entry), because caller->calls node is 
invalid.
History
Date User Action Args
2009-12-13 19:11:31vstinnersetrecipients: + vstinner
2009-12-13 19:11:31vstinnersetmessageid: <1260731491.61.0.262120607262.issue7494@psf.upfronthosting.co.za>
2009-12-13 19:11:30vstinnerlinkissue7494 messages
2009-12-13 19:11:30vstinnercreate