Why isn't all the memory de-allocated when Python exits?
Answer Posted / hr@tgksolutions.com
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 |
Post New Answer View All Answers
How do you convert a string to in python?
What is range() in python? Give an example to explain it.
What language is python based on?
Write a program to draw a board ex: 3by3 or 4by4 etc?
What is the use of metaclass in python?
How do I download a file over http using python?
How to run a Python CGI script in Wamp?
What is python __ init __?
What is meant by instantiating a class?
In python,how to read a file line-by-line into a list?
Why do u want this job?
Does python have overloading?
Do lists start at 0 or 1?
Does python supports interfaces like in java or c#?
What’s the difference between a list and a dictionary?