Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-119786: move interpreter doc from devguide to InternalDocs #125715

Merged
merged 6 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
iritkatriel marked this conversation as resolved.
Show resolved Hide resolved

- [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