summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2014-05-28 07:06:24 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2014-05-28 07:06:24 (GMT)
commit432810f9f35c014afecbd24edda6b26a3cf04fd9 (patch)
tree92f337986c193237ab8ccfa43ca17ff4a8ffef66 /Misc
parent3207a03035deabbff8a68f4f29dc33d1da944801 (diff)
downloadcpython-432810f9f35c014afecbd24edda6b26a3cf04fd9.zip
cpython-432810f9f35c014afecbd24edda6b26a3cf04fd9.tar.gz
cpython-432810f9f35c014afecbd24edda6b26a3cf04fd9.tar.bz2
Issue #18807: If copying (no symlinks) specified for a venv, then the python interpreter aliases (python, python3) are now created by copying rather than symlinking.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 13ff667..43a4a0c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,10 @@ Core and Builtins
Library
-------
+- Issue #18807: If copying (no symlinks) specified for a venv, then the python
+ interpreter aliases (python, python3) are now created by copying rather than
+ symlinking.
+
- Issue #14710: pkgutil.get_loader() no longer raises an exception when None is
found in sys.modules.