cpython: b45f105dbdfb (original) (raw)
Mercurial > cpython
changeset 77837:b45f105dbdfb
Issue #10571: Fix the "--sign" option of distutils' upload command. Patch by Jakub Wilk. [#10571]
Antoine Pitrou solipsis@pitrou.net | |
---|---|
date | Fri, 29 Jun 2012 01:06:51 +0200 |
parents | 9134bb4d0578(current diff)ef16a3db4628(diff) |
children | c974c99acdf5 |
files | Misc/ACKS Misc/NEWS |
diffstat | 3 files changed, 5 insertions(+), 1 deletions(-)[+] [-] Lib/distutils/command/upload.py 2 Misc/ACKS 1 Misc/NEWS 3 |
line wrap: on
line diff
--- a/Lib/distutils/command/upload.py +++ b/Lib/distutils/command/upload.py @@ -125,7 +125,7 @@ class upload(PyPIRCCommand): if self.sign: data['gpg_signature'] = (os.path.basename(filename) + ".asc",
open(filename+".asc").read())[](#l1.7)
open(filename+".asc", "rb").read())[](#l1.8)
# set up the authentication user_pass = (self.username + ":" + self.password).encode('ascii')
--- a/Misc/ACKS +++ b/Misc/ACKS @@ -1116,6 +1116,7 @@ Felix Wiemann Gerry Wiener Frank Wierzbicki Bryce "Zooko" Wilcox-O'Hearn +Jakub Wilk Gerald S. Williams Jason Williams John Williams
--- a/Misc/NEWS +++ b/Misc/NEWS @@ -14,6 +14,9 @@ Core and Builtins Library ------- +- Issue #10571: Fix the "--sign" option of distutils' upload command.