diff options
author | Benjamin Peterson <benjamin@python.org> | 2023-04-11 20:30:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 20:30:05 (GMT) |
commit | 96663875b2ea55c65e83551cdb741bbcdcaa7f21 (patch) | |
tree | 9753fd2e5b91f04b9570c5c98e758384b54640a7 /Tools | |
parent | 9db2db4fa4bc2a955170f727fde68ff4a4de3080 (diff) | |
download | cpython-96663875b2ea55c65e83551cdb741bbcdcaa7f21.zip cpython-96663875b2ea55c65e83551cdb741bbcdcaa7f21.tar.gz cpython-96663875b2ea55c65e83551cdb741bbcdcaa7f21.tar.bz2 |
Remove redundant words from interpreter_definition.md. (GH-103455)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/cases_generator/interpreter_definition.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/cases_generator/interpreter_definition.md b/Tools/cases_generator/interpreter_definition.md index c7bd38d..6f902f6 100644 --- a/Tools/cases_generator/interpreter_definition.md +++ b/Tools/cases_generator/interpreter_definition.md @@ -137,9 +137,9 @@ The following definitions may occur: `foo_1` is legal. `$` is not legal, nor is `struct` or `class`. The optional `type` in an `object` is the C type. It defaults to `PyObject *`. -The objects before the "--" are the objects on top of the the stack at the start -of the instruction. Those after the "--" are the objects on top of the the stack -at the end of the instruction. +The objects before the "--" are the objects on top of the stack at the start of +the instruction. Those after the "--" are the objects on top of the stack at the +end of the instruction. An `inst` without `stack_effect` is a transitional form to allow the original C code definitions to be copied. It lacks information to generate anything other than the |