[Python-checkins] bpo-34324: Doc README wrong directory name for venv (GH-8650)

Miss Islington (bot) webhook-mailer at python.org
Thu Aug 9 11:17:15 EDT 2018


https://github.com/python/cpython/commit/0ee2a29585e3c17e38eb6e6a2515405e40be22b5
commit: 0ee2a29585e3c17e38eb6e6a2515405e40be22b5
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-08-09T08:17:10-07:00
summary:

bpo-34324: Doc README wrong directory name for venv (GH-8650)


In the documentation, the `env` directory is specified when we execute
the `make venv` command. But in the code, `make venv` will create the
virtualenv inside the `venv` directory (defined by `VENVDIR`)
(cherry picked from commit 599bfa18f8ebcb23af300b6855934048c3c64e7d)

Co-authored-by: Stéphane Wirtel <stephane at wirtel.be>

files:
M Doc/README.rst

diff --git a/Doc/README.rst b/Doc/README.rst
index a29d1f3a708a..d7bcc5ba7919 100644
--- a/Doc/README.rst
+++ b/Doc/README.rst
@@ -33,7 +33,7 @@ To get started on UNIX, you can create a virtual environment with the command ::
   make venv
 
 That will install all the tools necessary to build the documentation. Assuming
-the virtual environment was created in the ``env`` directory (the default;
+the virtual environment was created in the ``venv`` directory (the default;
 configurable with the VENVDIR variable), you can run the following command to
 build the HTML output files::
 



More information about the Python-checkins mailing list