diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-07-17 16:33:46 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-07-17 16:33:46 (GMT) |
commit | 90db661b4335eaf7a3cb5e9a4524ae9707eeaf76 (patch) | |
tree | b73b67deb7feab489b2f43d8cc43778e8ac8cb23 /Doc/library | |
parent | 11718620ef87268fae07ba0809fec63b9c6d15e3 (diff) | |
download | cpython-90db661b4335eaf7a3cb5e9a4524ae9707eeaf76.zip cpython-90db661b4335eaf7a3cb5e9a4524ae9707eeaf76.tar.gz cpython-90db661b4335eaf7a3cb5e9a4524ae9707eeaf76.tar.bz2 |
Closes #15307: symlinks now work on OS X with framework Python builds. Patch by Ronald Oussoren.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/venv.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index 592a0d9..2499962 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -81,7 +81,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 and Mac OS X. + Unix systems, but ``False`` on Windows. * ``upgrade`` -- a Boolean value which, if True, will upgrade an existing environment with the running Python - for use when that Python has been |