Re: Sort of an odd way to debug...

2007-09-05 Thread Gabriel Genellina
En Wed, 05 Sep 2007 02:15:52 -0300, Alex Martelli <[EMAIL PROTECTED]> escribi�: > xkenneth <[EMAIL PROTECTED]> wrote: >... >> What I'd like to do, is define a base class. This base class would >> have a function, that gets called every time another function is >> called (regardless of whether

Re: Sort of an odd way to debug...

2007-09-04 Thread Alex Martelli
xkenneth <[EMAIL PROTECTED]> wrote: ... > What I'd like to do, is define a base class. This base class would > have a function, that gets called every time another function is > called (regardless of whether in the base class or a derived class), > and prints the doc string of each function when

Re: Sort of an odd way to debug...

2007-09-04 Thread Chris Mellon
On 9/4/07, xkenneth <[EMAIL PROTECTED]> wrote: > All, > > Sorry for the vague topic, but I really didn't know how to > describe what I want to do. I'd like to almost do a traceback of my > code for debugging and I thought this would be a really cool way to do > it if possible. > > What I'd like

Sort of an odd way to debug...

2007-09-04 Thread xkenneth
All, Sorry for the vague topic, but I really didn't know how to describe what I want to do. I'd like to almost do a traceback of my code for debugging and I thought this would be a really cool way to do it if possible. What I'd like to do, is define a base class. This base class would have a