Tuesday, May 10, 2016

Memory management Python

Memory management in Python involves a private heap containing all Python objects and data structures.
The management of this private heap is ensured internally by the Python memory manager.
 is important to understand that the management of the Python heap is performed by the interpreter itself and that the user has no control over it.