Skip to content

Commit

Permalink
pythongh-119786: move interpreter doc from devguide to InternalDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
iritkatriel committed Oct 18, 2024
1 parent e99650b commit d65ee0f
Show file tree
Hide file tree
Showing 4 changed files with 412 additions and 7 deletions.
29 changes: 22 additions & 7 deletions InternalDocs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,31 @@ it is not, please report that through the
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 d65ee0f

Please sign in to comment.