Re: [Python-Dev] Unifying trace and profile

2006-02-22 Thread Robert Brewer
Title: RE: [Python-Dev] Unifying trace and profile I, Robert, wrote: > 1. Allow trace hooks to receive c_call, c_return, > and c_exception events (like profile does). and Nicholas Bastin replied: > I can easily make this modification.  You can also > register the same bound meth

Re: [Python-Dev] Unifying trace and profile

2006-02-22 Thread Nicholas Bastin
On 2/21/06, Robert Brewer <[EMAIL PROTECTED]> wrote: > 1. Allow trace hooks to receive c_call, c_return, and c_exception events > (like profile does). I can easily make this modification. You can also register the same bound method for trace and profile, which sortof eliminates this problem. > 2