This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: uploading fails on long passwords
Type: Stage:
Components: Distutils Versions: Python 2.6
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: tarek Nosy List: magcius, tarek
Priority: normal Keywords: patch

Created on 2009-12-20 18:15 by magcius, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
auth_7552.patch magcius, 2009-12-20 18:32 Bug fix.
Messages (3)
msg96709 - (view) Author: Jasper St. Pierre (magcius) Date: 2009-12-20 18:15
Uploading a file to PyPI fails when a user has a long password, as
base64.encodestring linewraps data. Either replace '\n' with '', or use
base64.standard_b64encode
msg96712 - (view) Author: Jasper St. Pierre (magcius) Date: 2009-12-20 18:32
This patch should fix the bug.
msg96728 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2009-12-21 00:08
done in r76952, r76953, r76954 and r76955

Thanks magcius !
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51801
2009-12-21 00:08:46tareksetstatus: open -> closed

messages: + msg96728
2009-12-20 18:32:58magciussetfiles: + auth_7552.patch
keywords: + patch
messages: + msg96712
2009-12-20 18:15:44magciuscreate