summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 00:02:20 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-12-21 00:02:20 (GMT)
commit8b9361a26df8b336d08de6a59387c56be520591f (patch)
tree1a9255579ccc8249533d574d4261404b51ce4aee /Misc
parent4d1e50dc6f87765a57b6fa3f700eff1399379d6e (diff)
downloadcpython-8b9361a26df8b336d08de6a59387c56be520591f.zip
cpython-8b9361a26df8b336d08de6a59387c56be520591f.tar.gz
cpython-8b9361a26df8b336d08de6a59387c56be520591f.tar.bz2
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 f547cec..8c4ea74 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -157,6 +157,10 @@ C-API
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.