另外有一本比较新的书,不是直接讲CPython的源码剖析,而是借助CPython的字节码设计来讲解编程语言的设计与实现的:《Foundations of Programming Languages》 这本书用C++实现了一个名为CoCo的虚拟机,兼容CPython 3.2字节码,来讲解Python及其它编程语言的概念。请参考:CoCo - A Python Virtual Machine,完整代码作者放在在Github上了。
网络资源的话,请参考:
Python-Dev Info Page <- python-dev 邮件列表。关注CPython最新动态请从邮件列表开始。
GitHub - amygdalama/python-internals: Resources for learning about Python internals and CPython source code <- 资源汇总链接帖
Philip Guo - CPython internals: A ten-hour codewalk through the Python interpreter source code <- Rochester大学的Philip Guo助理教授做的视频讲解,基于 CPython 2.7.8。实际视频内容打不开的话请自备工具(咳咳
Generational GC in Python and Ruby <- CPython 与 CRuby 的GC的讲解
A Python Interpreter Written in Python <- 为Python程序员而写的,用Python来实现CPython字节码的解释器。先从这里看起会对理解实际的CPython里的做法有不少帮助。