blob: 13c56e18f412e8f979ead803c431f1616e810a85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# -*- coding: utf-8 -*-
"""
sphinx.builder
~~~~~~~~~~~~~~
.. warning::
This module is only kept for API compatibility; new code should
import these classes directly from the sphinx.builders package.
:copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
import warnings
from sphinx.builders import Builder
from sphinx.builders.text import TextBuilder
from sphinx.builders.html import StandaloneHTMLBuilder, WebHTMLBuilder, \
PickleHTMLBuilder, JSONHTMLBuilder
from sphinx.builders.latex import LaTeXBuilder
from sphinx.builders.changes import ChangesBuilder
from sphinx.builders.htmlhelp import HTMLHelpBuilder
from sphinx.builders.linkcheck import CheckExternalLinksBuilder
warnings.warn('The sphinx.builder module is deprecated; please import '
'builders from the respective sphinx.builders submodules.',
DeprecationWarning, stacklevel=2)
|