At Friday 27/10/2006 19:48, [EMAIL PROTECTED] wrote:

Wouldn't importing and re-importing the same modules cause considerable
resource bulk? Or does python cache that stuff?

No. Once a module is imported by the first time, the module object is placed in sys.modules; if a subsequent import finds the module there, it's not reloaded from disk.
See <http://docs.python.org/ref/import.html>


--
Gabriel Genellina
Softlab SRL
__________________________________________________
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis! ¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to