Search notes:

Python internals: bytecode

See also

Python stores cached bytecode in .pyc files.
The Global Interpreter Lock makes sure that at any given time only one thread executes bytecode.
The standard library module dis is a disassembler for bytecode.
The source file Python/ceval.c.

Index