diff options
author | Valerii <81074936+valerii-chirkov@users.noreply.github.com> | 2024-11-07 15:35:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-07 15:35:29 (GMT) |
commit | 19c248185343dfad046bbe4046b2b900e7405666 (patch) | |
tree | d7f0791725339fba7c189c0ad8d07dae5c10bc52 /InternalDocs | |
parent | e3510bd3dd9ea8f2a30cb1128470aee3a48d8880 (diff) | |
download | cpython-19c248185343dfad046bbe4046b2b900e7405666.zip cpython-19c248185343dfad046bbe4046b2b900e7405666.tar.gz cpython-19c248185343dfad046bbe4046b2b900e7405666.tar.bz2 |
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.
Diffstat (limited to 'InternalDocs')
-rw-r--r-- | InternalDocs/compiler.md | 4 | ||||
-rw-r--r-- | InternalDocs/parser.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/InternalDocs/compiler.md b/InternalDocs/compiler.md index 0da4670..37964bd 100644 --- a/InternalDocs/compiler.md +++ b/InternalDocs/compiler.md @@ -42,10 +42,10 @@ The definitions for literal tokens (such as `:`, numbers, etc.) can be found in 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. -* [Changing CPython’s grammar](https://devguide.python.org/developer-workflow/grammar/#grammar) +* [Changing CPython’s grammar](changing_grammar.md) for a detailed description of the grammar. diff --git a/InternalDocs/parser.md b/InternalDocs/parser.md index a0c70b4..348988b 100644 --- a/InternalDocs/parser.md +++ b/InternalDocs/parser.md @@ -17,7 +17,7 @@ Therefore, changes to the Python language are made by modifying the [grammar file](../Grammar/python.gram). 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. How PEG parsers work |