0 votes
in Python by
Is memory de-allocated when you exit Python?

1 Answer

0 votes
by

No. Modules with circular references to other objects are not always freed. It is also impossible to free some of the memory reserved by the C library.

...