/CPython

Python Bytecode Explained

- Michael Moser tl;dr: "When a program is run, the python interpreter is first parsing your code and checking for any syntax errors, then it is translating the source code into a series of bytecode instructions; these bytecode instructions are then run by the python interpreter." Michael looks at the bytecode in loops, classes, function calls and more. 

featured in #283


Contributing To CPython

- Guido Van Rossum tl;dr: A short guide on how to contribute to CPython including docs on how to start.

featured in #173