Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to read some source code from some open source python project, like ipython. I often find it hard to follow the execution flow of methods in different classes, even using eclipse's debug tool and execute the code step by step. I don't quite know why the code jumps to certain methods in a distantly related class.

I know that it must be the inheritance hierarchy, but I find it hard to follow. Is there any tools that help to understand how the code executes? Like visualizing the execution order of different methods? Hope it's not a entirely naive question.

Thanks.

share|improve this question
2  
Have you seen or tried any code graph "profiling" tools? – sarnold May 30 '12 at 2:25
@sarnold just tried a python module called pycallgraph and it seems working great. – qkhhly May 30 '12 at 2:56

2 Answers

The jumps are caused by your functions calling another function which in tern calls another function.

share|improve this answer

MIT website has a program that traces executions and displays them in picture that you may find useful: http://people.csail.mit.edu/pgbovine/python/tutor.html#mode=edit

share|improve this answer
that's pretty neat, thanks for the link – Levon May 30 '12 at 2:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.