HMS Surprise schrieb: > I imported a set of functions from a file I wrote to interpreter > shell: > > from myFile import * > > Now if I change functions in this file how can I make python forget it > so I can force a fresh import?
I think you are looking for reload(). But don't forget to check its documentation, there may be some caveats. <http://docs.python.org/lib/built-in-funcs.html> -- René -- http://mail.python.org/mailman/listinfo/python-list