From: Dmitry Shachnev Date: Wed, 25 Dec 2019 23:18:56 +0300 Subject: Remove references to sphinxcontrib modules They are not packaged yet, and when they are, we would want to avoid dependency loops anyway. --- doc/usage/builders/index.rst | 24 ------------------------ sphinx/application.py | 1 - 2 files changed, 25 deletions(-) diff --git a/doc/usage/builders/index.rst b/doc/usage/builders/index.rst index 9c538ee..21763c1 100644 --- a/doc/usage/builders/index.rst +++ b/doc/usage/builders/index.rst @@ -121,12 +121,6 @@ The most common builders are: also generates HTML Help support files that allow the Microsoft HTML Help Workshop to compile them into a CHM file. - .. autoattribute:: name - - .. autoattribute:: format - - .. autoattribute:: supported_image_types - .. module:: sphinxcontrib.qthelp .. class:: QtHelpBuilder @@ -138,12 +132,6 @@ The most common builders are: Moved to sphinxcontrib.qthelp from sphinx.builders package. - .. autoattribute:: name - - .. autoattribute:: format - - .. autoattribute:: supported_image_types - .. _Qt help: https://doc.qt.io/qt-4.8/qthelp-framework.html .. module:: sphinxcontrib.applehelp @@ -164,12 +152,6 @@ The most common builders are: output will not be valid until :program:`hiutil` has been run on all of the ``.lproj`` folders within the bundle. - .. autoattribute:: name - - .. autoattribute:: format - - .. autoattribute:: supported_image_types - .. versionadded:: 1.3 .. versionchanged:: 2.0 @@ -183,12 +165,6 @@ The most common builders are: also generates `GNOME Devhelp `__ support file that allows the GNOME Devhelp reader to view them. - .. autoattribute:: name - - .. autoattribute:: format - - .. autoattribute:: supported_image_types - .. versionchanged:: 2.0 Moved to sphinxcontrib.devhelp from sphinx.builders package. diff --git a/sphinx/application.py b/sphinx/application.py index 7d16d9a..3791738 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -116,7 +116,6 @@ _first_party_themes = ( 'alabaster', ) builtin_extensions += _first_party_themes -builtin_extensions += _first_party_extensions ENV_PICKLE_FILENAME = 'environment.pickle'