summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 00:08:17 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 00:08:17 (GMT)
commit63d14c0752dc9cc3cc6582bfde29f5f0d34433a7 (patch)
treebf2f07817594306290590b253b7efc6710848d60 /Misc
parent76c71ed9c5bb3e3e85a8295c8a137579bba977ec (diff)
downloadcpython-63d14c0752dc9cc3cc6582bfde29f5f0d34433a7.zip
cpython-63d14c0752dc9cc3cc6582bfde29f5f0d34433a7.tar.gz
cpython-63d14c0752dc9cc3cc6582bfde29f5f0d34433a7.tar.bz2
Merged revisions 76954 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r76954 | tarek.ziade | 2009-12-21 01:02:20 +0100 (Mon, 21 Dec 2009) | 9 lines Merged revisions 76952 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r76952 | tarek.ziade | 2009-12-21 00:23:34 +0100 (Mon, 21 Dec 2009) | 1 line Fixed #7552: fixed distutils.command.upload failure on very long passwords ........ ................
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 dc33c56..05bace3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -58,6 +58,10 @@ Core and Builtins
Library
-------
+- Issue #7552: Removed line feed in the base64 Authorization header in
+ the Distutils upload command to avoid an error when PyPI reads it.
+ This occurs on long passwords. Initial patch by JP St. Pierre.
+
- Issue #7231: urllib2 cannot handle https with proxy requiring auth. Patch by
Tatsuhiro Tsujikawa.