diff options
author | Francisco Kurucz <juanfkurucz@gmail.com> | 2024-08-08 08:19:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 08:19:10 (GMT) |
commit | acf0d9eae673843e4fdd2e2661fe621b100ac78d (patch) | |
tree | 0795b718d8755943d52d5c182296d80794aa14bd | |
parent | fe13c9baf40673fe369e98626dd87aea8b805aa2 (diff) | |
download | cpython-acf0d9eae673843e4fdd2e2661fe621b100ac78d.zip cpython-acf0d9eae673843e4fdd2e2661fe621b100ac78d.tar.gz cpython-acf0d9eae673843e4fdd2e2661fe621b100ac78d.tar.bz2 |
InternalDocs: Fix typo in link to instruction_sequence.c inside compiler docs (#122809)
-rw-r--r-- | InternalDocs/compiler.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/InternalDocs/compiler.md b/InternalDocs/compiler.md index 52a3ab2..ba31e16 100644 --- a/InternalDocs/compiler.md +++ b/InternalDocs/compiler.md @@ -555,7 +555,7 @@ Important files * [Python/assemble.c](https://github.com/python/cpython/blob/main/Python/assemble.c): Constructs a code object from a sequence of pseudo instructions. - * [Python/instruction_sequence.c.c](https://github.com/python/cpython/blob/main/Python/instruction_sequence.c.c): + * [Python/instruction_sequence.c](https://github.com/python/cpython/blob/main/Python/instruction_sequence.c): A data structure representing a sequence of bytecode-like pseudo-instructions. * [Include/](https://github.com/python/cpython/blob/main/Include/) |