Re: can modules be dynamically reloaded

2005-11-16 Thread Benjamin Niemann
Steve wrote: > Can python modules be reloaded. Yes: import mymod ... reload(mymod) But this will not always work as expected (what someone would expect who does not really understand how it works...). Read the documentation on > For examp

can modules be dynamically reloaded

2005-11-16 Thread Steve
Can python modules be reloaded. For example you import a module, programatically edit it, then have the file reload the module? Does anyone have any ideas about this? Steve -- http://mail.python.org/mailman/listinfo/python-list