Any tools to print source code call hierarchy

Skip Montanaro skip at pobox.com
Sat Sep 6 18:08:57 EDT 2003


    Scott> I need a tool that will go through a python module (ClientForm in
    Scott> this case) and allow me to specify a starting module to parse and
    Scott> tell me what all it uses.

This is not a trivial exercise to perform with Python because it is
dynamically typed.  In many cases you don't know the type of an object until
runtime.

Skip





More information about the Python-list mailing list