[EMAIL PROTECTED] wrote:
> Wouldn't importing and re-importing the same modules cause considerable
> resource bulk? Or does python cache that stuff?

If a module is already imported, then the import statement just uses the 
cached module. However, you can force a full reload of the module using 
the following syntax:

reload(mymodule)

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

Reply via email to