diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-12-12 22:35:55 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-12-12 22:35:55 +0900 |
commit | 92a9c653f7230ce33df66549fe61cf64bb80559b (patch) | |
tree | e7efe0a5de75379a93762749b143889e1e672d22 /sphinx/application.py | |
parent | f0430f093a9dfaedc1d734b38dc9b4321c811d15 (diff) | |
parent | b469f95e242056142c342ac1a32470dee852c29c (diff) | |
download | sphinx-git-92a9c653f7230ce33df66549fe61cf64bb80559b.tar.gz |
Merge branch 'stable'
Diffstat (limited to 'sphinx/application.py')
-rw-r--r-- | sphinx/application.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sphinx/application.py b/sphinx/application.py index ca3c40be7..8ef373067 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -559,6 +559,12 @@ class Sphinx(object): # special-case for compatibility if extension == 'rst2pdf.pdfbuilder': ext_meta = {'parallel_read_safe': True} + elif extension in builtin_extensions: + ext_meta = { + 'version': 'builtin', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } try: if not ext_meta.get('version'): ext_meta['version'] = 'unknown version' |