summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-02-14 23:14:54 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2014-02-14 23:14:54 (GMT)
commitc00fa6387d9a2ceb3b4c4fa94646279c8b70fb4f (patch)
treef12c28e8ab319b2180c41a3f792ac93d73622495 /Misc/NEWS
parente84fde981dd957f53ec81e2d6f14a7cf418a9925 (diff)
downloadcpython-c00fa6387d9a2ceb3b4c4fa94646279c8b70fb4f.zip
cpython-c00fa6387d9a2ceb3b4c4fa94646279c8b70fb4f.tar.gz
cpython-c00fa6387d9a2ceb3b4c4fa94646279c8b70fb4f.tar.bz2
Issue #19744: Handle missing SSL/TLS in ensurepip
- now also allows POSIX installation with SSL/TLS missing - a goal for pip 1.6 is to allow local use without SSL/TLS
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index edb4db4..d2173c2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,10 @@ Core and Builtins
Library
-------
+- Issue #19744: the ensurepip installation step now just prints a warning to
+ stderr rather than failing outright if SSL/TLS is unavailable. This allows
+ local installation of POSIX builds without SSL/TLS support.
+
- Issue #20594: Avoid name clash with the libc function posix_close.