Skip to content

Commit

Permalink
pythongh-119786: move interpreter doc from devguide to InternalDocs (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
iritkatriel authored and ebonnal committed Jan 10, 2025
1 parent 8fa8d45 commit 4c0c1f7
Show file tree
Hide file tree
Showing 4 changed files with 400 additions and 9 deletions.
31 changes: 22 additions & 9 deletions InternalDocs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,32 @@ The core dev team attempts to keep this documentation up to date. If
it is not, please report that through the
[issue tracker](https://github.com/python/cpython/issues).

Index:
-----

[Guide to the parser](parser.md)
Compiling Python Source Code
---

[Compiler Design](compiler.md)
- [Guide to the parser](parser.md)

[Frames](frames.md)
- [Compiler Design](compiler.md)

[Adaptive Instruction Families](adaptive.md)
Runtime Objects
---

[The Source Code Locations Table](locations.md)
- [Code Objects (coming soon)](code_objects.md)

[Garbage collector design](garbage_collector.md)
- [The Source Code Locations Table](locations.md)

[Exception Handling](exception_handling.md)
- [Generators (coming soon)](generators.md)

- [Frames](frames.md)

Program Execution
---

- [The Interpreter](interpreter.md)

- [Adaptive Instruction Families](adaptive.md)

- [Garbage Collector Design](garbage_collector.md)

- [Exception Handling](exception_handling.md)
5 changes: 5 additions & 0 deletions InternalDocs/code_objects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

Code objects
============

Coming soon.
9 changes: 9 additions & 0 deletions InternalDocs/generators.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

Generators
==========

Coming soon.

<!--
- Generators, async functions, async generators, and ``yield from`` (next, send, throw, close; and await; and how this code breaks the interpreter abstraction)
-->
Loading

0 comments on commit 4c0c1f7

Please sign in to comment.