diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-06-01 17:56:47 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2018-06-01 17:56:47 (GMT) |
commit | 1df877caad584135263ef94d83a28251e162e643 (patch) | |
tree | cb71399954bc2a96819e230928f00eef02f6b45f | |
parent | 461ad598d12eba7754181402e00bb7cfc7f1d9cf (diff) | |
download | cpython-1df877caad584135263ef94d83a28251e162e643.zip cpython-1df877caad584135263ef94d83a28251e162e643.tar.gz cpython-1df877caad584135263ef94d83a28251e162e643.tar.bz2 |
bpo-32519: Removed misleading sentence from EnvBuilder documentation. (GH-7296) (GH-7299)
(cherry picked from commit c0d341d49b3ffc8b0037e501c246271be9c69f55)
Co-authored-by: Vinay Sajip <vinay_sajip@yahoo.co.uk>
-rw-r--r-- | Doc/library/venv.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index 17c80c8..c50231e 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -109,8 +109,7 @@ creation according to their needs, the :class:`EnvBuilder` class. * ``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. Defaults to ``True`` on Linux and - Unix systems, but ``False`` on Windows. + e.g. ``pythonw.exe``), 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 |