Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amygdalama/python-internals
Resources for learning about Python internals and CPython source code
https://github.com/amygdalama/python-internals
Last synced: 3 months ago
JSON representation
Resources for learning about Python internals and CPython source code
- Host: GitHub
- URL: https://github.com/amygdalama/python-internals
- Owner: amygdalama
- Created: 2014-03-28T13:54:49.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-10-12T12:18:02.000Z (about 2 years ago)
- Last Synced: 2024-05-23T04:29:39.711Z (6 months ago)
- Size: 198 KB
- Stars: 470
- Watchers: 30
- Forks: 49
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Here is a collection of articles, tutorials, and whatnot that help with understanding of CPython internals and source code.
###Python Documentation
* [Python Developer's Guide](http://docs.python.org/devguide/)
* [Extending and Embedding the Python Interpreter](http://docs.python.org/2.7/extending/index.html)
* [Python/C API Reference Manual](http://docs.python.org/2.7/c-api/index.html)
###Blog Post Series
* [Eli Bendersky's Python Internals series](http://eli.thegreenplace.net/tag/python-internals)
* [Adding a New Statement to Python](http://eli.thegreenplace.net/2010/06/30/python-internals-adding-a-new-statement-to-python/)
* [Yaniv Aknin's Python Innards series](http://tech.blog.aknin.name/category/my-projects/pythons-innards/)
* [Allison Kaptur's Python Internals Series](http://akaptur.github.io/blog/categories/python-internals/)
* [My Python Internals Series!](http://mathamy.com/tag/python-internals.html)
###Other Various Blog Posts and Papers
* [Python Compiler Internals](http://tomlee.co/wp-content/uploads/2012/11/108_python-language-internals.pdf), by Thomas Lee
* [How Fast Can We Make Interpreted Python?](http://arxiv.org/pdf/1306.6047v2.pdf), by Russel Power and Alex Rubinsteyn
* [Python Attributes and Methods](http://www.cafepy.com/article/python_attributes_and_methods/python_attributes_and_methods.html)
* [Understanding Python by breaking it](http://blog.hakril.net/articles/0-understanding-python-by-breaking-it.html)