Skip to content

Commit d65ee0f

Browse files
committed
gh-119786: move interpreter doc from devguide to InternalDocs
1 parent e99650b commit d65ee0f

File tree

4 files changed

+412
-7
lines changed

4 files changed

+412
-7
lines changed

InternalDocs/README.md

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,31 @@ it is not, please report that through the
1414
Index:
1515
-----
1616

17-
[Guide to the parser](parser.md)
17+
Compiling Python Source Code
18+
---
1819

19-
[Compiler Design](compiler.md)
20+
- [Guide to the parser](parser.md)
2021

21-
[Frames](frames.md)
22+
- [Compiler Design](compiler.md)
2223

23-
[Adaptive Instruction Families](adaptive.md)
24+
Runtime Objects
25+
---
2426

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

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

29-
[Exception Handling](exception_handling.md)
31+
- [Generators (coming soon)](generators.md)
32+
33+
- [Frames](frames.md)
34+
35+
Program Execution
36+
---
37+
38+
- [The Interpreter](interpreter.md)
39+
40+
- [Adaptive Instruction Families](adaptive.md)
41+
42+
- [Garbage collector design](garbage_collector.md)
43+
44+
- [Exception Handling](exception_handling.md)

InternalDocs/code_objects.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
Code objects
3+
============
4+
5+
Coming soon.

InternalDocs/generators.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
Generators
3+
==========
4+
5+
Coming soon.
6+
7+
<!--
8+
- Generators, async functions, async generators, and ``yield from`` (next, send, throw, close; and await; and how this code breaks the interpreter abstraction)
9+
-->

0 commit comments

Comments
 (0)