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: [doc] broken link and typo fix in interpreter_definition.md #125455

Merged
merged 3 commits into from
Oct 14, 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
1 change: 1 addition & 0 deletions InternalDocs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ 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).

iritkatriel marked this conversation as resolved.
Show resolved Hide resolved
List of topics:
iritkatriel marked this conversation as resolved.
Show resolved Hide resolved

[Guide to the parser](parser.md)

Expand Down
5 changes: 3 additions & 2 deletions Tools/cases_generator/interpreter_definition.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ We update it as the need arises.
### Syntax

Each op definition has a kind, a name, a stack and instruction stream effect,
and a piece of C code describing its semantics::
and a piece of C code describing its semantics:

```
file:
Expand Down Expand Up @@ -245,7 +245,8 @@ The same is true for all members of a pseudo instruction

## Examples

(Another source of examples can be found in the [tests](test_generator.py).)
(Another source of examples can be found in the
[tests](https://github.com/python/cpython/blob/main/Lib/test/test_generated_cases.py).)

Some examples:

Expand Down