Re: tracking dependencies

2006-06-09 Thread Michele Simionato
Dennis Benzinger wrote: > > I've never tried it, but http://www.tarind.com/depgraph.html looks like > what you are looking for. This is EXACTLY what I had in mind :-) Michele Simionato -- http://mail.python.org/mailman/listinfo/python-list

Re: tracking dependencies

2006-06-08 Thread Dennis Benzinger
Michele Simionato wrote: > I have a big framework (not written by me) with lots of internal > dependencies and I am > looking for a tool to see the dependency tree. I.e. given a module x, > it should show me all the modules imported by x, and the modules > imported > by them recursively. Standard l

tracking dependencies

2006-06-08 Thread Michele Simionato
I have a big framework (not written by me) with lots of internal dependencies and I am looking for a tool to see the dependency tree. I.e. given a module x, it should show me all the modules imported by x, and the modules imported by them recursively. Standard library modules should be ignored and