"Rob Wolfe" <[EMAIL PROTECTED]> escribió en el mensaje 
news:[EMAIL PROTECTED]
> Imbaud Pierre <[EMAIL PROTECTED]> writes:
>
>> I am willing to retrieve the file an imported module came from;
>> module.__file__, or inspect.getfile(module) only gives me the
>> relative file name. How do I determine the path?
>
>>>> import os
>>>> os.path.abspath(module.__file__)

Note that this works only if the current dir has not changed. So it's a good 
idea to store the absolute path as early as possible (before the program 
have a chance to change the current dir)

-- 
Gabriel Genellina 



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to