gh-126529: Update devguide links to relative filenames in InternalDocs (#126530)

Update devguide links to relative filenames in InternalDocs/parser.md
and InternalDocs/compiler.md.
This commit is contained in:
Valerii 2024-11-07 20:35:29 +05:00 committed by GitHub
parent e3510bd3dd
commit 19c2481853
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -42,10 +42,10 @@ The definitions for literal tokens (such as `:`, numbers, etc.) can be found in
See Also: See Also:
* [Guide to the parser](https://devguide.python.org/internals/parser/index.html) * [Guide to the parser](parser.md)
for a detailed description of the parser. for a detailed description of the parser.
* [Changing CPythons grammar](https://devguide.python.org/developer-workflow/grammar/#grammar) * [Changing CPythons grammar](changing_grammar.md)
for a detailed description of the grammar. for a detailed description of the grammar.

View File

@ -17,7 +17,7 @@ Therefore, changes to the Python language are made by modifying the
[grammar file](../Grammar/python.gram). [grammar file](../Grammar/python.gram).
Developers rarely need to modify the generator itself. Developers rarely need to modify the generator itself.
See [Changing CPython's grammar](./changing_grammar.md) See [Changing CPython's grammar](changing_grammar.md)
for a detailed description of the grammar and the process for changing it. for a detailed description of the grammar and the process for changing it.
How PEG parsers work How PEG parsers work