diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-02-26 22:25:33 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-02-26 22:25:33 (GMT) |
commit | 76998fef2ced3dfbd62a3047f40312e3fff3ac26 (patch) | |
tree | 096c7a02da01620f4e6e243fbe5d52b41a631b86 /Doc/whatsnew | |
parent | b48af340b9e6c8775fb9da9cab06e922d0bd0127 (diff) | |
download | cpython-76998fef2ced3dfbd62a3047f40312e3fff3ac26.zip cpython-76998fef2ced3dfbd62a3047f40312e3fff3ac26.tar.gz cpython-76998fef2ced3dfbd62a3047f40312e3fff3ac26.tar.bz2 |
Issue #23465: Implement PEP 486 - Make the Python Launcher aware of virtual environments (patch by Paul Moore)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 7c4e530..2a77729 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -123,6 +123,18 @@ manually, and should make it more robust against asynchronous signal reception. :pep:`475` -- Retry system calls failing with EINTR +PEP 486: Make the Python Launcher aware of virtual environments +--------------------------------------------------------------- + +:pep:`486` makes the Windows launcher (see :pep:`397`) aware of an active +virtual environment. When the default interpreter would be used and the +``VIRTUAL_ENV`` environment variable is set, the interpreter in the virtual +environment will be used. + +.. seealso:: + + :pep:`486` -- Make the Python Launcher aware of virtual environments + Other Language Changes ====================== |