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, one of my favorite ways of driving Python is with emacs mode. I'll edit my script in one buffer and then use the emacs command to execfile that code in the open interactive buffer. This works great when you're working on a single module at a time. Does this help? A simple version of reload shouldn't be that much work. I don't know why it fell off the radar for this long. We'll get that running in the next 1-2 weeks for 0.7.4. Thanks - Jim _______________________________________________ users-ironpython.com mailing list users-ironpython.com@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com