Re: override settrace

2007-04-26 Thread Raja
On Apr 25, 8:10 pm, Steve Holden <[EMAIL PROTECTED]> wrote: > Raja wrote: > > Hi, > > I want to override the sys.settrace() call, create a way to trace > > the execution of a python program. Keep track of all objects created > > and destroyed. Keep track of the call pattern throughout the executi

Re: override settrace

2007-04-25 Thread Gabriel Genellina
En Wed, 25 Apr 2007 02:05:57 -0300, Raja <[EMAIL PROTECTED]> escribió: > I want to override the sys.settrace() call, create a way to trace > the execution of a python program. Keep track of all objects created > and destroyed. Keep track of the call pattern throughout the execution > of the prog

Re: override settrace

2007-04-25 Thread Steve Holden
Raja wrote: > Hi, > I want to override the sys.settrace() call, create a way to trace > the execution of a python program. Keep track of all objects created > and destroyed. Keep track of the call pattern throughout the execution > of the program and output a simplified "call graph" to standard o

override settrace

2007-04-24 Thread Raja
Hi, I want to override the sys.settrace() call, create a way to trace the execution of a python program. Keep track of all objects created and destroyed. Keep track of the call pattern throughout the execution of the program and output a simplified "call graph" to standard out. Please help me in