Pybind11 Notes

Usage

The following two lines should be added to the top of your source code.

#include <pybind11/pybind11.h>
namespace py = pybind11;
阅读全文 →

[Python] 从另一个视角看Python

这篇文章尝试编译一个debug版的Cpython解释器,写一个最简单的Python脚本,用GDB来调试解释器执行脚本的过程,分析解释器的函数栈。
阅读全文 →