Why isn’t all memory freed when Python exits?

Technology CommunityCategory: PythonWhy isn’t all memory freed when Python exits?
VietMX Staff asked 3 years ago

Objects referenced from the global namespaces of Python modules are not always deallocated when Python exits. This may happen if there are circular references. There are also certain bits of memory that are allocated by the C library that are impossible to free (e.g. a tool like Purify will complain about these). Python is, however, aggressive about cleaning up memory on exit and does try to destroy every single object.

If you want to force Python to delete certain things on deallocation, you can use the atexit module to register one or more exit functions to handle those deletions.