RE: [IronPython] reload or workaround

2005-04-26 Thread Jim Hugunin
Michael Spencer wrote: > Since reload is not available yet, what is the best workaround for re- > compiling > changed source for imported modules? Execfile is a good option for many situations and was implemented to make sure we had at least a partial reload story. Until we get great IDE support,

[IronPython] reload or workaround

2005-04-26 Thread Michael Spencer
Congrats and thanks for the 0.73 release Since reload is not available yet, what is the best workaround for re-compiling changed source for imported modules? The exe/pdf files cannot be deleted del sys.modules[...] followed by import ... raises a System.IO.IOException Until now, I have been resta