Documentation for importing modules / pythonpath?

Lexy Zhitenev zhitenev at cs.vsu.ru
Fri Feb 21 05:32:28 EST 2003


When the module is imported it never gets reinitialized again. To do it
explicitly use 'reload(modulename)', e.g.:

>>> import sys
>>> reload(sys)

Lexy






More information about the Python-list mailing list