mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
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 ........
This commit is contained in:
parent
4d1e50dc6f
commit
8b9361a26d
3 changed files with 28 additions and 3 deletions
|
|
@ -6,7 +6,7 @@ import os, io
|
|||
import socket
|
||||
import platform
|
||||
from urllib.request import urlopen, Request, HTTPError
|
||||
import base64
|
||||
from base64 import standard_b64encode
|
||||
from urllib.parse import urlparse
|
||||
from hashlib import md5
|
||||
|
||||
|
|
@ -130,7 +130,7 @@ class upload(PyPIRCCommand):
|
|||
user_pass = (self.username + ":" + self.password).encode('ascii')
|
||||
# The exact encoding of the authentication string is debated.
|
||||
# Anyway PyPI only accepts ascii for both username or password.
|
||||
auth = "Basic " + base64.encodebytes(user_pass).strip().decode('ascii')
|
||||
auth = "Basic " + standard_b64encode(user_pass).decode('ascii')
|
||||
|
||||
# Build up the MIME payload for the POST data
|
||||
boundary = '--------------GHSKFJDLGDS7543FJKLFHRE75642756743254'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue