On Tue, Feb 10, 2009 at 7:05 PM, sunny sharma <sunnysharma...@gmail.com> wrote:
> Hi everybody,
>
> I was having some problem regarding the class and objects and the
> __init__method used. Is there any way by which we can see how the program is
> being interpreted means calling of functions, execution of statements etc.
> Here is the program that i could not understand.
>
> http://rafb.net/p/k34Sz934.html
>
> I am having problem with the calling by objects and the use of
> __init__method.
>
> I am also having confusion regarding the module part. I know that it links
> the program with the python library but there are many module used like
> import sys ,time ,os...
>
> Just as you used sympy import *
> Please help.

Try to put this at the very beginning of your script:

import pdb
pdb.set_trace()

Then you can use the debugger to go through your program, just hit
"next", or "step" in the debugger.

Ondrej

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To post to this group, send email to sympy@googlegroups.com
To unsubscribe from this group, send email to sympy+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sympy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to