diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-09-02 16:43:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 16:43:43 (GMT) |
commit | 27183f48f256e19dbd6fba2b8c95a59de4e04e37 (patch) | |
tree | f9b84771d768b184d4daaf8365a49c6723d47c08 | |
parent | bafaf072759a5d259169665d82b7cc7647f109fe (diff) | |
download | cpython-27183f48f256e19dbd6fba2b8c95a59de4e04e37.zip cpython-27183f48f256e19dbd6fba2b8c95a59de4e04e37.tar.gz cpython-27183f48f256e19dbd6fba2b8c95a59de4e04e37.tar.bz2 |
Fix invalid escape sequences in the peg_highlight Sphinx extension (GH-22047) (GH-22065)
(cherry picked from commit 5a4a963a6c798fa9207a9998618a9c0ec3b6b6d7)
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
-rw-r--r-- | Doc/tools/extensions/peg_highlight.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/extensions/peg_highlight.py b/Doc/tools/extensions/peg_highlight.py index f02515d..8bc2467 100644 --- a/Doc/tools/extensions/peg_highlight.py +++ b/Doc/tools/extensions/peg_highlight.py @@ -59,7 +59,7 @@ class PEGLexer(RegexLexer): include("variables"), (r"\b(?!(NULL|EXTRA))([A-Z_]+)\b\s*(?!\()", Text,), ( - r"^\s*" + _name + "\s*" + "(\[.*\])?" + "\s*" + "(\(.+\))?" + "\s*(:)", + r"^\s*" + _name + r"\s*" + r"(\[.*\])?" + r"\s*" + r"(\(.+\))?" + r"\s*(:)", bygroups(Name.Function, None, None, Punctuation), ), (_name, Name.Function), |