Skip to content

pkolchanov/CustomizingPython

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Customzing Python

A list (n=1) of step-by-step of tutorials of Python customizing. Each focuses on understanding Cpython internals.

Pipe operator

The goal is to add an operator to perfom bash-like chain calls:

>>> [1,2] |> map(lambda x:x*2) |> list() [2, 4]

Check the tutorial


Pavel Kolchanov, 2024

About

Learn CPython internals by customizing the interpreter.

Topics

Resources

Stars

Watchers

Forks