diff options
author | mkkot <marcin2006@gmail.com> | 2018-12-14 20:28:52 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-12-14 20:28:52 (GMT) |
commit | f5107dfd42121ef40b13eb678705802f0ff02cf9 (patch) | |
tree | 2a9bd28b19d5d67a263e71809a04ac17a3125186 /Doc/using | |
parent | f8e9bd568adf85c1e4aea1dda542a96b027797e2 (diff) | |
download | cpython-f5107dfd42121ef40b13eb678705802f0ff02cf9.zip cpython-f5107dfd42121ef40b13eb678705802f0ff02cf9.tar.gz cpython-f5107dfd42121ef40b13eb678705802f0ff02cf9.tar.bz2 |
bpo-35450: reflect in docs that venv module is not always creating a … (GH-11144)
…copy of python binary
https://bugs.python.org/issue35450
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/venv-create.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc index 45abd59..ba5096a 100644 --- a/Doc/using/venv-create.inc +++ b/Doc/using/venv-create.inc @@ -7,9 +7,10 @@ Running this command creates the target directory (creating any parent directories that don't exist already) and places a ``pyvenv.cfg`` file in it with a ``home`` key pointing to the Python installation from which the command was run. It also creates a ``bin`` (or ``Scripts`` on Windows) subdirectory -containing a copy of the ``python`` binary (or binaries, in the case of -Windows). It also creates an (initially empty) ``lib/pythonX.Y/site-packages`` -subdirectory (on Windows, this is ``Lib\site-packages``). If an existing +containing a copy/symlink of the Python binary/binaries (as appropriate for the +platform or arguments used at environment creation time). It also creates an +(initially empty) ``lib/pythonX.Y/site-packages`` subdirectory +(on Windows, this is ``Lib\site-packages``). If an existing directory is specified, it will be re-used. .. deprecated:: 3.6 |