A list (n=1) of step-by-step of tutorials of CPython customizing. Each focuses on understanding CPython internals.
The goal is to add an operator to perform bash-like chain calls:
>>> [1,2] |> map(lambda x:x*2) |> list() [2, 4]
Pavel Kolchanov, 2024