阅读《Extending and Embedding the Python Interpreter》和《Python/C API Reference Manual》的笔记 《Extending and Embedding the Python Interpreter》 是一份关于如何用 C 语言编写 Python 模块的文档。 《Python/C API Reference Manual》 是一份关于 Python C API 的手册。 这里记录了一些阅读过程的笔记,包括代码。 目录 《Extending and Embedding the Python Interpreter》 如何使用 C 编写一个模块 自定义类型(类) 使用 distutils 编译模块 在其它应用中嵌入 Python 解释器 《Python/C API Reference Manual》 简介 顶层API 其余的API直接看文档比较好,需要用的时候查文档就行。