Directory
Gabriel Genellina
gagsl-py2 at yahoo.com.ar
Wed Feb 18 16:39:24 EST 2009
En Wed, 18 Feb 2009 12:15:25 -0200, Steve Holden <steve at holdenweb.com>
escribió:
> gtillmon wrote:
>> I would like to know how to display and store the path of each mondule
>> that is called.
> It's certainly possible to trace function calls, if that would help.
> sys.settrace allows you to establish a function that gets called
If the OP is only interested in import statements, perhaps the -v flag is
enough:
python -v script_name.py
It prints a line (on stderr) for each module imported, stating its name
and source file.
--
Gabriel Genellina
More information about the Python-list
mailing list