Jim wrote: > Application abc is designed as a complete module. The user is to > script their own functions to work with application abc.
so use execfile() with a prepared namespace: namespace = { ...stuff to export to the module ... } execfile("directory/module.py", namespace) </F> -- http://mail.python.org/mailman/listinfo/python-list