From b9082958ef7dfb57d0fef745a5bf2521546a0dd6 Mon Sep 17 00:00:00 2001 From: Valerii <81074936+valerii-chirkov@users.noreply.github.com> Date: Thu, 7 Nov 2024 03:11:48 +0500 Subject: [PATCH] gh-126509: Update link to CPython's grammar docs in InternalDocs/parser.md (#126510) --- InternalDocs/parser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternalDocs/parser.md b/InternalDocs/parser.md index 6398ba6cd28..a0c70b46087 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 the devguide's [Changing CPython's grammar](https://devguide.python.org/developer-workflow/grammar/#grammar) +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