carren-smith / CPython-Internals

Dive into cpython internal, trying to illustrate every detail of cpython implementation | cpython源码阅读笔记, 多图展示底层实现细节

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cpython Internals

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

Table of Contents

Objects

Modules

Lib

  • re
  • asyncio

Interpreter

  • frame
  • code
  • descr
  • exception
  • module
  • namespace
  • GIL
  • gc

learning material

I will only recommend what I've read

About

Dive into cpython internal, trying to illustrate every detail of cpython implementation | cpython源码阅读笔记, 多图展示底层实现细节