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
a72bc8c3
Kaydet (Commit)
a72bc8c3
authored
Eyl 27, 2014
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #16537: Check whether self.extensions is empty in setup.py.
Patch by Jonathan Hosmer.
üst
10177be4
21c8d5c7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
setup.py
setup.py
+3
-1
No files found.
Misc/ACKS
Dosyayı görüntüle @
a72bc8c3
...
...
@@ -592,6 +592,7 @@ Randall Hopper
Nadav Horesh
Alon Horev
Jan Hosang
Jonathan Hosmer
Alan Hourihane
Ken Howard
Brad Howes
...
...
Misc/NEWS
Dosyayı görüntüle @
a72bc8c3
...
...
@@ -977,6 +977,9 @@ IDLE
Build
-----
- Issue #16537: Check whether self.extensions is empty in setup.py. Patch by
Jonathan Hosmer.
- Issue #22359: Remove incorrect uses of recursive make. Patch by Jonas
Wagner.
...
...
setup.py
Dosyayı görüntüle @
a72bc8c3
...
...
@@ -263,7 +263,9 @@ class PyBuildExt(build_ext):
for
ext
in
self
.
extensions
:
self
.
check_extension_import
(
ext
)
longest
=
max
([
len
(
e
.
name
)
for
e
in
self
.
extensions
])
longest
=
0
if
self
.
extensions
:
longest
=
max
([
len
(
e
.
name
)
for
e
in
self
.
extensions
])
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