diff options
author | Mikhail Efimov <efimov.mikhail@gmail.com> | 2024-10-15 15:38:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-15 15:38:19 (GMT) |
commit | b903fc38d8ec74f61fb5ca8a3f5fd025915bceac (patch) | |
tree | 6297ae5a8ecb707f43546876d58b07d4ce494057 /InternalDocs | |
parent | 703227dd021491ceb9343f69fa48f4b6a05adbb3 (diff) | |
download | cpython-b903fc38d8ec74f61fb5ca8a3f5fd025915bceac.zip cpython-b903fc38d8ec74f61fb5ca8a3f5fd025915bceac.tar.gz cpython-b903fc38d8ec74f61fb5ca8a3f5fd025915bceac.tar.bz2 |
gh-119786: fix typo in compiler.md (#125456)
Diffstat (limited to 'InternalDocs')
-rw-r--r-- | InternalDocs/compiler.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/InternalDocs/compiler.md b/InternalDocs/compiler.md index f27e73b..acef6de 100644 --- a/InternalDocs/compiler.md +++ b/InternalDocs/compiler.md @@ -515,7 +515,7 @@ Important files Creates C structs corresponding to the ASDL types. Also contains code for marshalling AST nodes (core ASDL types have marshalling code in [Python/asdl.c](https://github.com/python/cpython/blob/main/Python/asdl.c)). - "File automatically generated by + File automatically generated by [Parser/asdl_c.py](https://github.com/python/cpython/blob/main/Parser/asdl_c.py). This file must be committed separately after every grammar change is committed since the ``__version__`` value is set to the latest @@ -572,7 +572,7 @@ Important files * [Include/internal/pycore_ast.h](https://github.com/python/cpython/blob/main/Include/internal/pycore_ast.h) : Contains the actual definitions of the C structs as generated by [Python/Python-ast.c](https://github.com/python/cpython/blob/main/Python/Python-ast.c) - "Automatically generated by + Automatically generated by [Parser/asdl_c.py](https://github.com/python/cpython/blob/main/Parser/asdl_c.py). * [Include/internal/pycore_asdl.h](https://github.com/python/cpython/blob/main/Include/internal/pycore_asdl.h) |