bpo-36329: Declare the version of Python to use for Tools/scripts/serve.py (#12385)

* bpo-36329: Declare the version of Python to use for Tools/scripts/serve.py

* Add the blurb entry
This commit is contained in:
Stéphane Wirtel 2019-03-18 11:47:55 +01:00 committed by Julien Palard
parent 74ae50e53e
commit 09a9f1799c
2 changed files with 4 additions and 1 deletions

View File

@ -174,7 +174,7 @@ check:
$(PYTHON) tools/rstlint.py -i tools -i $(VENVDIR) -i README.rst
serve:
../Tools/scripts/serve.py build/html
$(PYTHON) ../Tools/scripts/serve.py build/html
# Targets for daily automated doc build
# By default, Sphinx only rebuilds pages where the page content has changed.

View File

@ -0,0 +1,3 @@
Declare the path of the Python binary for the usage of
``Tools/scripts/serve.py`` when executing ``make -C Doc/ serve``.
Contributed by Stéphane Wirtel