vote up 4 vote down star

I am currently in the process of making an embedded system port of the CPython 3.0 Python interpreter and I'm particularly interested in any references or documentation that provides details about the design and structure of code for Release 3.0 or even about any of the 2.x releases.

One useful document I have found so far is this informational PEP on the implementation - which is a good overview - but is still pretty high level. Hoping to come across something that gives [much] more detail on more of the modules or perhaps even covers something about porting considerations.

flag

2 Answers

vote up 3 vote down check

There's the documentation for the C API, which is essentially the API for the internals of Python. It won't cover porting details, though. The code itself is fairly well documented. You might try reading in and around the area you'll need to modify.

link|flag
Thanks (+1). I had looked at the official C API document and also the Extending/Embedding Python document. These are useful for my purposes, but the they are really looking at things from the outside. Ideally, I would like to find inside out type document - like the PEP but more comprehensive. – InSciTek Jeff Feb 22 at 14:39
vote up 2 vote down

Most of the documentation is stored in the minds of various core developers. :) A good resource for you would be the #python-dev IRC channel on freenode where many of them hang out.

There's also some scattered information on the Python wiki.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.