Merge pull request #9647 from tk0miya/9637_Builder.allow_parallel

Fix #9637: Add Builder.allow_parallel to the list of builder APIs
This commit is contained in:
Takeshi KOMIYA 2021-09-20 17:02:49 +09:00 committed by GitHub
commit 274ee481ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@ Builder API
.. autoattribute:: name .. autoattribute:: name
.. autoattribute:: format .. autoattribute:: format
.. autoattribute:: epilog .. autoattribute:: epilog
.. autoattribute:: allow_parallel
.. autoattribute:: supported_image_types .. autoattribute:: supported_image_types
.. autoattribute:: supported_remote_images .. autoattribute:: supported_remote_images
.. autoattribute:: supported_data_uri_images .. autoattribute:: supported_data_uri_images

View File

@ -68,7 +68,7 @@ class Builder:
# doctree versioning method # doctree versioning method
versioning_method = 'none' versioning_method = 'none'
versioning_compare = False versioning_compare = False
# allow parallel write_doc() calls #: allow parallel write_doc() calls
allow_parallel = False allow_parallel = False
# support translation # support translation
use_message_catalog = True use_message_catalog = True