Mark `Builder.write()` as final (#12767)

This commit is contained in:
Adam Turner
2024-10-10 15:59:12 +01:00
committed by GitHub
parent 705d5ddd9f
commit d135d2eba3
18 changed files with 74 additions and 60 deletions

View File

@@ -39,20 +39,23 @@ Builder API
.. automethod:: read
.. automethod:: read_doc
.. automethod:: write_doctree
.. automethod:: write
.. rubric:: Overridable Methods
.. rubric:: Abstract Methods
These must be implemented in builder sub-classes:
.. automethod:: get_outdated_docs
.. automethod:: prepare_writing
.. automethod:: write_doc
.. automethod:: get_target_uri
.. rubric:: Overridable Methods
These methods can be overridden in builder sub-classes:
.. automethod:: init
.. automethod:: write
.. automethod:: write_documents
.. automethod:: prepare_writing
.. automethod:: copy_assets
.. automethod:: get_relative_uri
.. automethod:: finish