Skip to content

Commit

Permalink
gh-126529: Update devguide links to relative filenames in InternalDocs (
Browse files Browse the repository at this point in the history
#126530)

Update devguide links to relative filenames in InternalDocs/parser.md
and InternalDocs/compiler.md.
  • Loading branch information
valerii-chirkov authored Nov 7, 2024
1 parent e3510bd commit 19c2481
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions InternalDocs/compiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down
2 changes: 1 addition & 1 deletion InternalDocs/parser.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 19c2481

Please sign in to comment.