diff options
author | Steve Dower <steve.dower@microsoft.com> | 2019-01-30 21:49:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-30 21:49:14 (GMT) |
commit | a1f9a3332bd4767e47013ea787022f06b6dbcbbd (patch) | |
tree | 7953193c5c6971eb5168b8ca753449615a5a8ce5 /Doc/library/venv.rst | |
parent | 40ebe948e97b47fc84c8f527910063286a174b25 (diff) | |
download | cpython-a1f9a3332bd4767e47013ea787022f06b6dbcbbd.zip cpython-a1f9a3332bd4767e47013ea787022f06b6dbcbbd.tar.gz cpython-a1f9a3332bd4767e47013ea787022f06b6dbcbbd.tar.bz2 |
bpo-35854: Fix EnvBuilder and --symlinks in venv on Windows (GH-11700)
Diffstat (limited to 'Doc/library/venv.rst')
-rw-r--r-- | Doc/library/venv.rst | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index efa51e2..412808a 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -109,8 +109,7 @@ creation according to their needs, the :class:`EnvBuilder` class. any existing target directory, before creating the environment. * ``symlinks`` -- a Boolean value indicating whether to attempt to symlink the - Python binary (and any necessary DLLs or other binaries, - e.g. ``pythonw.exe``), rather than copying. + Python binary rather than copying. * ``upgrade`` -- a Boolean value which, if true, will upgrade an existing environment with the running Python - for use when that Python has been @@ -176,15 +175,15 @@ creation according to their needs, the :class:`EnvBuilder` class. .. method:: setup_python(context) - Creates a copy of the Python executable in the environment on POSIX - systems. If a specific executable ``python3.x`` was used, symlinks to - ``python`` and ``python3`` will be created pointing to that executable, - unless files with those names already exist. + Creates a copy or symlink to the Python executable in the environment. + On POSIX systems, if a specific executable ``python3.x`` was used, + symlinks to ``python`` and ``python3`` will be created pointing to that + executable, unless files with those names already exist. .. method:: setup_scripts(context) Installs activation scripts appropriate to the platform into the virtual - environment. On Windows, also installs the ``python[w].exe`` scripts. + environment. .. method:: post_setup(context) @@ -194,8 +193,13 @@ creation according to their needs, the :class:`EnvBuilder` class. .. versionchanged:: 3.7.2 Windows now uses redirector scripts for ``python[w].exe`` instead of - copying the actual binaries, and so :meth:`setup_python` does nothing - unless running from a build in the source tree. + copying the actual binaries. In 3.7.2 only :meth:`setup_python` does + nothing unless running from a build in the source tree. + + .. versionchanged:: 3.7.3 + Windows copies the redirector scripts as part of :meth:`setup_python` + instead of :meth:`setup_scripts`. This was not the case in 3.7.2. + When using symlinks, the original executables will be linked. In addition, :class:`EnvBuilder` provides this utility method that can be called from :meth:`setup_scripts` or :meth:`post_setup` in subclasses to |