From e7da1fb206f5b540b77e869a63ca28aa2c201532 Mon Sep 17 00:00:00 2001 From: Valerii <81074936+valerii-chirkov@users.noreply.github.com> Date: Wed, 6 Nov 2024 23:12:43 +0500 Subject: [PATCH 1/2] Update InternalDocs/parser.md Updated link to CPython's grammar docs --- InternalDocs/parser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternalDocs/parser.md b/InternalDocs/parser.md index 6398ba6cd2838f..727d0759a4ebf7 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 the devguide's [Changing CPython's grammar](./changing_grammar.md) for a detailed description of the grammar and the process for changing it. How PEG parsers work From 64b1bb5e12d4ed81faa989d4be0a78e9fec3694b Mon Sep 17 00:00:00 2001 From: Valerii <81074936+valerii-chirkov@users.noreply.github.com> Date: Thu, 7 Nov 2024 00:25:07 +0500 Subject: [PATCH 2/2] Update InternalDocs/parser.md Co-authored-by: Kirill Podoprigora --- InternalDocs/parser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternalDocs/parser.md b/InternalDocs/parser.md index 727d0759a4ebf7..a0c70b46087d1a 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](./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