Extending the code of Python - adding language fea

2020-07-23 04:53发布

I have been programming in python exclusively for 4 years and have never really looked under the hood at the C code in which python is written. I have recently been looking into a problem that would involve modifying python at that level.

The code seems pretty consistent, and thus relatively easily understood. However, it's complex enough that it wasn't making sense to me just by studying it how it all worked together. Granted, I didn't spend a lot of time or effort on that, for want of a better resource. I also looked over the documentation on the python site. However, it is oriented more toward extending the language through modules.

I was hoping to find some straightforward documentation on how the parser works at the C level and how to extend the core language directly (adding language features). The module-oriented documentation provides some great insight into the way types are built and objects are managed, but I am looking for more.

Is there any such documentation out there?

标签: python c core
3条回答
狗以群分
2楼-- · 2020-07-23 05:12

There's not too much written lore on this topic. Your best bet is to just simply follow the guidelines in PEP 306

查看更多
家丑人穷心不美
3楼-- · 2020-07-23 05:13
我命由我不由天
4楼-- · 2020-07-23 05:24

This article may help you get started. It takes a lot of information from the excellent PEP 339 - Design of the CPython Compiler.

查看更多
登录 后发表回答