summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorJames Gerity <snoop.jedi@gmail.com>2020-11-30 19:08:26 (GMT)
committerGitHub <noreply@github.com>2020-11-30 19:08:26 (GMT)
commitbcc9579227578de5dd7f8825d24ba51b618ad3c2 (patch)
treebc44d4ed462a6ecd38ee9a26f7d5e07c290dd2d9 /Doc/reference
parent7f82f22eba1312617e1aa19cb916da1aae1609a4 (diff)
downloadcpython-bcc9579227578de5dd7f8825d24ba51b618ad3c2.zip
cpython-bcc9579227578de5dd7f8825d24ba51b618ad3c2.tar.gz
cpython-bcc9579227578de5dd7f8825d24ba51b618ad3c2.tar.bz2
bpo-42485: [Doc] Link to PEP 617 from full grammar specification (GH-23532)
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/grammar.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/reference/grammar.rst b/Doc/reference/grammar.rst
index acf8376..59b4500 100644
--- a/Doc/reference/grammar.rst
+++ b/Doc/reference/grammar.rst
@@ -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