This repository is my notes/blog for cpython source code
Trying to illustrate every detail of cpython implementation
# based on version 3.8.0a0
cd cpython
git reset --hard ab54b9a130c88f708077c2ef6c4963b632c132b3
- set
- list
- dict
- str/unicode
- tuple
- long/int
- bytes
- bytearray
- float
- func(user-defined)
- method(builtin)
- iter
- gen
- class
- complex
- enum
- file
- range
- slice
- io
- re
- asyncio
- frame
- code
- descr
- exception
- module
- namespace
- GIL