summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-12-21 01:04:32 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-12-21 01:04:32 (GMT)
commit5c29dd4dbcdd7778fd327f6ede14bfa54bca0708 (patch)
tree5f42ab46972565e14fb5840e7a03e51b79780a05 /Doc
parenta2813c98822acd3b2a9091b36cd0ddb6086a2032 (diff)
downloadcpython-5c29dd4dbcdd7778fd327f6ede14bfa54bca0708.zip
cpython-5c29dd4dbcdd7778fd327f6ede14bfa54bca0708.tar.gz
cpython-5c29dd4dbcdd7778fd327f6ede14bfa54bca0708.tar.bz2
sphinx.web is long gone
Diffstat (limited to 'Doc')
-rw-r--r--Doc/README.txt4
-rw-r--r--Doc/tools/sphinx-web.py14
2 files changed, 2 insertions, 16 deletions
diff --git a/Doc/README.txt b/Doc/README.txt
index a1ebed7..3dce091 100644
--- a/Doc/README.txt
+++ b/Doc/README.txt
@@ -94,8 +94,8 @@ Then, make an output directory, e.g. under `build/`, and run ::
python tools/sphinx-build.py -b<builder> . build/<outputdirectory>
-where `<builder>` is one of html, web or htmlhelp (for explanations see the make
-targets above).
+where `<builder>` is one of html, text, latex, or htmlhelp (for explanations see
+the make targets above).
Contributing
diff --git a/Doc/tools/sphinx-web.py b/Doc/tools/sphinx-web.py
deleted file mode 100644
index 5f7b50b..0000000
--- a/Doc/tools/sphinx-web.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
- Sphinx - Python documentation webserver
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- :copyright: 2007 by Georg Brandl.
- :license: Python license.
-"""
-
-import sys
-
-if __name__ == '__main__':
- from sphinx.web import main
- sys.exit(main(sys.argv))