diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2018-06-01 09:08:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 09:08:33 (GMT) |
commit | c0d341d49b3ffc8b0037e501c246271be9c69f55 (patch) | |
tree | 1e0969f4fe752fd3bc1728b56e9ba6c8bddcb48a /Doc/library/venv.rst | |
parent | 7ad16eb51c7871320edb789ddb6184c6c76304b0 (diff) | |
download | cpython-c0d341d49b3ffc8b0037e501c246271be9c69f55.zip cpython-c0d341d49b3ffc8b0037e501c246271be9c69f55.tar.gz cpython-c0d341d49b3ffc8b0037e501c246271be9c69f55.tar.bz2 |
bpo-32519: Removed misleading sentence from EnvBuilder documentation. (GH-7296)
Diffstat (limited to 'Doc/library/venv.rst')
-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 1fff7bc4..b85d642 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -105,8 +105,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 |