Search articles...
English Русский
How memory and Garbage Collector work in CPython: analysis for Python backend interview
2026-03-15 08:16:38

How memory and Garbage Collector work in CPython: analysis for Python backend interview

In Python, memory is managed not only by the Garbage Collector. In fact, the basis of everything is reference counting , and the GC only helps to collect cyclic references. In this article, we will lo…

Read full article at source (habr.com)
Back to feed