Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 434 Bytes

index.rst

File metadata and controls

18 lines (15 loc) · 434 Bytes

CPython's internals

This guide describes the basics of CPython's internals. It explains the layout of CPython's source code. It also explains how the parser, compiler, and interpreter work together to run your Python code. Finally, it covers the garbage collector and how it manages memory.

.. toctree::
   :maxdepth: 3

   exploring
   parser
   compiler
   interpreter
   garbage-collector