summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-02-28 13:35:05 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2014-02-28 13:35:05 (GMT)
commit4a6dc3a72646ab003a40a3ef37ac75485c5cd2cc (patch)
treeebb672d2acb8dc41815093229edf9c9542656459 /Misc/NEWS
parent78c330d714a76439e5c17d0a156d25d53d4c5a68 (diff)
downloadcpython-4a6dc3a72646ab003a40a3ef37ac75485c5cd2cc.zip
cpython-4a6dc3a72646ab003a40a3ef37ac75485c5cd2cc.tar.gz
cpython-4a6dc3a72646ab003a40a3ef37ac75485c5cd2cc.tar.bz2
Close #20757: return success for skipped pip uninstall
The 3.4rc2 Windows uninstaller would fail if pip had been updated to a version that didn't match the version installed by ensurepip. This skip is no longer treated as an error, so an updated pip ends up being handled like any other pip installed package and is left alone by the CPython uninstaller.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 77b969c..291365d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,13 @@ Tests
- Issue #20743: Fix a reference leak in test_tcl.
+Build
+-----
+
+- Issue #20757: The ensurepip helper for the Windows uninstaller now skips
+ uninstalling pip (rather than failing) if the user has updated pip to a
+ different version from the one bundled with ensurepip.
+
Tools/Demos
-----------