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
4256e8ab
Kaydet (Commit)
4256e8ab
authored
Eki 01, 2014
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #16537: Use the new *default* parameter of max().
üst
3f612f32
1d82a9c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
setup.py
setup.py
+1
-3
No files found.
setup.py
Dosyayı görüntüle @
4256e8ab
...
...
@@ -263,9 +263,7 @@ class PyBuildExt(build_ext):
for
ext
in
self
.
extensions
:
self
.
check_extension_import
(
ext
)
longest
=
0
if
self
.
extensions
:
longest
=
max
([
len
(
e
.
name
)
for
e
in
self
.
extensions
])
longest
=
max
([
len
(
e
.
name
)
for
e
in
self
.
extensions
],
default
=
0
)
if
self
.
failed
or
self
.
failed_on_import
:
all_failed
=
self
.
failed
+
self
.
failed_on_import
longest
=
max
(
longest
,
max
([
len
(
name
)
for
name
in
all_failed
]))
...
...
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