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
7c4afcb1
Kaydet (Commit)
7c4afcb1
authored
Mar 19, 2010
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #2698 - now reads the compiler option when creating the compiler
üst
f7239567
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
build_ext.py
Lib/distutils/command/build_ext.py
+1
-1
test_build_ext.py
Lib/distutils/tests/test_build_ext.py
+1
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
7c4afcb1
...
@@ -310,7 +310,7 @@ class build_ext(Command):
...
@@ -310,7 +310,7 @@ class build_ext(Command):
# Setup the CCompiler object that we'll use to do all the
# Setup the CCompiler object that we'll use to do all the
# compiling and linking
# compiling and linking
self
.
compiler
=
new_compiler
(
compiler
=
None
,
self
.
compiler
=
new_compiler
(
compiler
=
self
.
compiler
,
verbose
=
self
.
verbose
,
verbose
=
self
.
verbose
,
dry_run
=
self
.
dry_run
,
dry_run
=
self
.
dry_run
,
force
=
self
.
force
)
force
=
self
.
force
)
...
...
Lib/distutils/tests/test_build_ext.py
Dosyayı görüntüle @
7c4afcb1
...
@@ -329,6 +329,7 @@ class BuildExtTestCase(TempdirManager,
...
@@ -329,6 +329,7 @@ class BuildExtTestCase(TempdirManager,
self
.
assertEquals
(
so_dir
,
other_tmp_dir
)
self
.
assertEquals
(
so_dir
,
other_tmp_dir
)
cmd
.
inplace
=
0
cmd
.
inplace
=
0
cmd
.
compiler
=
None
cmd
.
run
()
cmd
.
run
()
so_file
=
cmd
.
get_outputs
()[
0
]
so_file
=
cmd
.
get_outputs
()[
0
]
self
.
assertTrue
(
os
.
path
.
exists
(
so_file
))
self
.
assertTrue
(
os
.
path
.
exists
(
so_file
))
...
...
Misc/NEWS
Dosyayı görüntüle @
7c4afcb1
...
@@ -17,6 +17,8 @@ Core and Builtins
...
@@ -17,6 +17,8 @@ Core and Builtins
Library
Library
-------
-------
- Issue #2698: The --compiler ignored was ignored for distutils' build_ext.
- Issue #4961: Inconsistent/wrong result of askyesno function in tkMessageBox
- Issue #4961: Inconsistent/wrong result of askyesno function in tkMessageBox
with Tcl/Tk-8.5.
with Tcl/Tk-8.5.
...
...
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