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
e08fa29d
Kaydet (Commit)
e08fa29d
authored
Ara 27, 2005
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #999767: make setup.py obey Setup.local wrt shared modules
üst
cd4d1e8b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
setup.py
setup.py
+11
-10
No files found.
setup.py
Dosyayı görüntüle @
e08fa29d
...
...
@@ -148,17 +148,18 @@ class PyBuildExt(build_ext):
self
.
extensions
.
remove
(
ext
)
if
platform
!=
'mac'
:
# Parse Modules/Setup to figure out which modules are turned
# on in the file.
input
=
text_file
.
TextFile
(
'Modules/Setup'
,
join_lines
=
1
)
# Parse Modules/Setup and Modules/Setup.local to figure out which
# modules are turned on in the file.
remove_modules
=
[]
while
1
:
line
=
input
.
readline
()
if
not
line
:
break
line
=
line
.
split
()
remove_modules
.
append
(
line
[
0
]
)
input
.
close
()
for
filename
in
(
'Modules/Setup'
,
'Modules/Setup.local'
):
input
=
text_file
.
TextFile
(
filename
,
join_lines
=
1
)
while
1
:
line
=
input
.
readline
()
if
not
line
:
break
line
=
line
.
split
()
remove_modules
.
append
(
line
[
0
])
input
.
close
()
for
ext
in
self
.
extensions
[:]:
if
ext
.
name
in
remove_modules
:
self
.
extensions
.
remove
(
ext
)
...
...
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