summaryrefslogtreecommitdiff
path: root/sphinx/make_mode.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/make_mode.py')
-rw-r--r--sphinx/make_mode.py38
1 files changed, 0 insertions, 38 deletions
diff --git a/sphinx/make_mode.py b/sphinx/make_mode.py
deleted file mode 100644
index 792f4ab85..000000000
--- a/sphinx/make_mode.py
+++ /dev/null
@@ -1,38 +0,0 @@
-"""
- sphinx.make_mode
- ~~~~~~~~~~~~~~~~
-
- sphinx-build -M command-line handling.
-
- This replaces the old, platform-dependent and once-generated content
- of Makefile / make.bat.
-
- This is in its own module so that importing it is fast. It should not
- import the main Sphinx modules (like sphinx.applications, sphinx.builders).
-
- :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
- :license: BSD, see LICENSE for details.
-"""
-
-import warnings
-
-from sphinx.cmd import make_mode
-from sphinx.deprecation import RemovedInSphinx30Warning
-
-
-BUILDERS = make_mode.BUILDERS
-
-
-class Make(make_mode.Make):
- def __init__(self, *args):
- warnings.warn('sphinx.make_mode.Make is deprecated. '
- 'Please use sphinx.cmd.make_mode.Make instead.',
- RemovedInSphinx30Warning, stacklevel=2)
- super().__init__(*args)
-
-
-def run_make_mode(args):
- warnings.warn('sphinx.make_mode.run_make_mode() is deprecated. '
- 'Please use sphinx.cmd.make_mode.run_make_mode() instead.',
- RemovedInSphinx30Warning, stacklevel=2)
- return make_mode.run_make_mode(args)