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
21c8d5c7
Kaydet (Commit)
21c8d5c7
authored
Eyl 27, 2014
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16537: Check whether self.extensions is empty in setup.py.
Patch by Jonathan Hosmer.
üst
1f3a88fe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+6
-0
setup.py
setup.py
+3
-1
No files found.
Misc/ACKS
Dosyayı görüntüle @
21c8d5c7
...
@@ -588,6 +588,7 @@ Randall Hopper
...
@@ -588,6 +588,7 @@ Randall Hopper
Nadav Horesh
Nadav Horesh
Alon Horev
Alon Horev
Jan Hosang
Jan Hosang
Jonathan Hosmer
Alan Hourihane
Alan Hourihane
Ken Howard
Ken Howard
Brad Howes
Brad Howes
...
...
Misc/NEWS
Dosyayı görüntüle @
21c8d5c7
...
@@ -15,6 +15,12 @@ Library
...
@@ -15,6 +15,12 @@ Library
- Issue #22448: Improve canceled timer handles cleanup to prevent
- Issue #22448: Improve canceled timer handles cleanup to prevent
unbound memory usage. Patch by Joshua Moore-Oliva.
unbound memory usage. Patch by Joshua Moore-Oliva.
Build
-----
- Issue #16537: Check whether self.extensions is empty in setup.py. Patch by
Jonathan Hosmer.
What'
s
New
in
Python
3.4.2
?
What'
s
New
in
Python
3.4.2
?
===========================
===========================
...
...
setup.py
Dosyayı görüntüle @
21c8d5c7
...
@@ -252,7 +252,9 @@ class PyBuildExt(build_ext):
...
@@ -252,7 +252,9 @@ class PyBuildExt(build_ext):
build_ext
.
build_extensions
(
self
)
build_ext
.
build_extensions
(
self
)
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
:
if
self
.
failed
:
longest
=
max
(
longest
,
max
([
len
(
name
)
for
name
in
self
.
failed
]))
longest
=
max
(
longest
,
max
([
len
(
name
)
for
name
in
self
.
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