Skip to content

Commit 274ee48

Browse files
authored
Merge pull request #9647 from tk0miya/9637_Builder.allow_parallel
Fix #9637: Add Builder.allow_parallel to the list of builder APIs
2 parents a05dc0b + 29ac4c1 commit 274ee48

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/extdev/builderapi.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Builder API
1616
.. autoattribute:: name
1717
.. autoattribute:: format
1818
.. autoattribute:: epilog
19+
.. autoattribute:: allow_parallel
1920
.. autoattribute:: supported_image_types
2021
.. autoattribute:: supported_remote_images
2122
.. autoattribute:: supported_data_uri_images

sphinx/builders/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class Builder:
6868
# doctree versioning method
6969
versioning_method = 'none'
7070
versioning_compare = False
71-
# allow parallel write_doc() calls
71+
#: allow parallel write_doc() calls
7272
allow_parallel = False
7373
# support translation
7474
use_message_catalog = True

0 commit comments

Comments
 (0)