2011/5/2 Roger Binns <rogerb at rogerbinns.com>: > There is no way you could have called a > function provided by the module if the module itself had been freed. Are you sure? from mymodule import func del sys.modules['mymodule'] func() -- Amaury Forgeot d'Arc