> Hi, > > Is it possible to (forcibly) unload the python engine after executing > a python script?
Nope - Python has no facility for unloading extension modules, which means that repeated Inits and Terms in the same process tends to be problematic - and as a result we don't finalize at all. We used to, but it didn't release anywhere near everything and the pain was worse than the gain. Mark _______________________________________________ Python-win32 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-win32
