diff options
author | Batuhan Taskaya <batuhanosmantaskaya@gmail.com> | 2020-05-06 05:24:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 05:24:39 (GMT) |
commit | d60040ba226bd2e3b6f58d074015aa2499dc1cb8 (patch) | |
tree | 65febdcf90469f484c76bc4cf4164cde10959672 /Doc/conf.py | |
parent | b9c46a2c2d7fc68457bff641f78932d66f5e5f59 (diff) | |
download | cpython-d60040ba226bd2e3b6f58d074015aa2499dc1cb8.zip cpython-d60040ba226bd2e3b6f58d074015aa2499dc1cb8.tar.gz cpython-d60040ba226bd2e3b6f58d074015aa2499dc1cb8.tar.bz2 |
bpo-40517: Implement syntax highlighting support for ASDL (#19928)
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 32db343..12d74ea 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -14,7 +14,8 @@ sys.path.append(os.path.abspath('includes')) # --------------------- extensions = ['sphinx.ext.coverage', 'sphinx.ext.doctest', - 'pyspecific', 'c_annotations', 'escape4chm'] + 'pyspecific', 'c_annotations', 'escape4chm', + 'asdl_highlight'] doctest_global_setup = ''' |