summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/README
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2022-04-29 13:47:26 (GMT)
committerGitHub <noreply@github.com>2022-04-29 13:47:26 (GMT)
commit89c6b2b8f615a1c1827a92c4582c213b1a5027fb (patch)
treef4e4996942f7d0e314d0a2e4c732d74b098aef36 /Tools/scripts/README
parent64113a4ba801126028505c50a7383f3e9df29573 (diff)
downloadcpython-89c6b2b8f615a1c1827a92c4582c213b1a5027fb.zip
cpython-89c6b2b8f615a1c1827a92c4582c213b1a5027fb.tar.gz
cpython-89c6b2b8f615a1c1827a92c4582c213b1a5027fb.tar.bz2
bpo-36329: Remove 'make -C Doc serve' in favour of 'make -C Doc htmlview' (GH-32354)
Also updated `make -C htmlview` so it used a full path with `file://`, because the original didn't open the page (macOS). For example: ```sh cd Doc # Doesn't open anything: python3 -c "import webbrowser; webbrowser.open('build/html/index.html')" # Opens the docs page e.g. file:///Users/hugo/github/cpython/Doc/build/html/index.html : python3 -c "import os, webbrowser; webbrowser.open('file://' + os.path.realpath('build/html/index.html'))" ``` https://bugs.python.org/issue36329
Diffstat (limited to 'Tools/scripts/README')
-rw-r--r--Tools/scripts/README1
1 files changed, 0 insertions, 1 deletions
diff --git a/Tools/scripts/README b/Tools/scripts/README
index ba0f662..c1d6673 100644
--- a/Tools/scripts/README
+++ b/Tools/scripts/README
@@ -57,7 +57,6 @@ reindent.py Change .py files to use 4-space indents
reindent-rst.py Fix-up reStructuredText file whitespace
rgrep.py Reverse grep through a file (useful for big logfiles)
run_tests.py Run the test suite with more sensible default options
-serve.py Small wsgiref-based web server, used in make serve in Doc
stable_abi.py Stable ABI checks and file generators.
suff.py Sort a list of files by suffix
texi2html.py Convert GNU texinfo files into HTML