]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-42485: [Doc] Link to PEP 617 from full grammar specification (GH-23532)
authorJames Gerity <snoop.jedi@gmail.com>
Mon, 30 Nov 2020 19:08:26 +0000 (14:08 -0500)
committerGitHub <noreply@github.com>
Mon, 30 Nov 2020 19:08:26 +0000 (19:08 +0000)
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Doc/reference/grammar.rst

index acf83765b5796cc8883e66a70cdfb81f0e7698db..59b45005836a7633bbdf2a101057a22c2e8d98f9 100644 (file)
@@ -13,7 +13,8 @@ In particular, ``&`` followed by a symbol, token or parenthesized
 group indicates a positive lookahead (i.e., is required to match but
 not consumed), while ``!`` indicates a negative lookahead (i.e., is
 required _not_ to match).  We use the ``|`` separator to mean PEG's
-"ordered choice" (written as ``/`` in traditional PEG grammars).
+"ordered choice" (written as ``/`` in traditional PEG grammars). See
+:pep:`617` for more details on the grammar's syntax.
 
 .. literalinclude:: ../../Grammar/python.gram
   :language: peg