Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
24319ac4
Kaydet (Commit)
24319ac4
authored
Haz 28, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #10571: Fix the "--sign" option of distutils' upload command.
Patch by Jakub Wilk.
üst
f29435f9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
upload.py
Lib/distutils/command/upload.py
+1
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/distutils/command/upload.py
Dosyayı görüntüle @
24319ac4
...
@@ -125,7 +125,7 @@ class upload(PyPIRCCommand):
...
@@ -125,7 +125,7 @@ class upload(PyPIRCCommand):
if
self
.
sign
:
if
self
.
sign
:
data
[
'gpg_signature'
]
=
(
os
.
path
.
basename
(
filename
)
+
".asc"
,
data
[
'gpg_signature'
]
=
(
os
.
path
.
basename
(
filename
)
+
".asc"
,
open
(
filename
+
".asc"
)
.
read
())
open
(
filename
+
".asc"
,
"rb"
)
.
read
())
# set up the authentication
# set up the authentication
user_pass
=
(
self
.
username
+
":"
+
self
.
password
)
.
encode
(
'ascii'
)
user_pass
=
(
self
.
username
+
":"
+
self
.
password
)
.
encode
(
'ascii'
)
...
...
Misc/ACKS
Dosyayı görüntüle @
24319ac4
...
@@ -1009,6 +1009,7 @@ Felix Wiemann
...
@@ -1009,6 +1009,7 @@ Felix Wiemann
Gerry Wiener
Gerry Wiener
Frank Wierzbicki
Frank Wierzbicki
Bryce "Zooko" Wilcox-O'Hearn
Bryce "Zooko" Wilcox-O'Hearn
Jakub Wilk
Jason Williams
Jason Williams
John Williams
John Williams
Sue Williams
Sue Williams
...
...
Misc/NEWS
Dosyayı görüntüle @
24319ac4
...
@@ -81,6 +81,9 @@ Core and Builtins
...
@@ -81,6 +81,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #10571: Fix the "--sign" option of distutils' upload command.
Patch by Jakub Wilk.
- Issue #9559: If messages were only added, a new file is no longer
- Issue #9559: If messages were only added, a new file is no longer
created and renamed over the old file when flush() is called on an
created and renamed over the old file when flush() is called on an
mbox, MMDF or Babyl mailbox.
mbox, MMDF or Babyl mailbox.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment