]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-126529: Update devguide links to relative filenames in InternalDocs (#126530)
authorValerii <81074936+valerii-chirkov@users.noreply.github.com>
Thu, 7 Nov 2024 15:35:29 +0000 (20:35 +0500)
committerGitHub <noreply@github.com>
Thu, 7 Nov 2024 15:35:29 +0000 (16:35 +0100)
Update devguide links to relative filenames in InternalDocs/parser.md
and InternalDocs/compiler.md.

InternalDocs/compiler.md
InternalDocs/parser.md

index 0da4670c792cb5fceaee312a7a58ef8d0ca33ca6..37964bd99428df799b3fa15024f10f91b4735e64 100644 (file)
@@ -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.
 
 
index a0c70b46087d1ad61183472b3593603ec14fd79b..348988b7c2f00391381850a6cf9c27ee1f7d2be0 100644 (file)
@@ -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