Why isn't all the memory de-allocated when Python exits?
Answer / nashiinformaticssolutions
Certain Python modules are not always released or deallocated when Python terminates, particularly those that include circular references to other objects or objects referenced from global namespaces.
Python's effective cleanup mechanism would attempt to de-allocate/destroy all other objects upon termination.
De-allocating the RAM that the C library has reserved is difficult.
Is This Answer Correct ? | 0 Yes | 0 No |
How does inheritance work in python?
What do you understand by deque in python?
How to implement an 'enum' in python?
What are python’s dictionaries?
What is difference between panda series and dictionary in python?
What is the difference between locals() and globals ()?
How will you change case for all letters in string in python?
How python is interpreted?
How do you include a string in python?
Can we use python in linux?
What are python decorators? 8) What is the difference ...
What's a negative index?