Skip to content

Commit 19c2481

Browse files
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.
1 parent e3510bd commit 19c2481

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

InternalDocs/compiler.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ The definitions for literal tokens (such as `:`, numbers, etc.) can be found in
4242

4343
See Also:
4444

45-
* [Guide to the parser](https://devguide.python.org/internals/parser/index.html)
45+
* [Guide to the parser](parser.md)
4646
for a detailed description of the parser.
4747

48-
* [Changing CPython’s grammar](https://devguide.python.org/developer-workflow/grammar/#grammar)
48+
* [Changing CPython’s grammar](changing_grammar.md)
4949
for a detailed description of the grammar.
5050

5151

InternalDocs/parser.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Therefore, changes to the Python language are made by modifying the
1717
[grammar file](../Grammar/python.gram).
1818
Developers rarely need to modify the generator itself.
1919

20-
See [Changing CPython's grammar](./changing_grammar.md)
20+
See [Changing CPython's grammar](changing_grammar.md)
2121
for a detailed description of the grammar and the process for changing it.
2222

2323
How PEG parsers work

0 commit comments

Comments
 (0)