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
a5cd1827
Kaydet (Commit)
a5cd1827
authored
Nis 30, 2010
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #8577. distutils.sysconfig.get_python_inc() now differenciates buildir and srcdir
üst
01d149fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
sysconfig.py
Lib/distutils/sysconfig.py
+9
-5
NEWS
Misc/NEWS
+4
-0
No files found.
Lib/distutils/sysconfig.py
Dosyayı görüntüle @
a5cd1827
...
...
@@ -71,15 +71,19 @@ def get_python_inc(plat_specific=0, prefix=None):
"""
if
prefix
is
None
:
prefix
=
plat_specific
and
EXEC_PREFIX
or
PREFIX
if
os
.
name
==
"posix"
:
if
python_build
:
b
ase
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
sys
.
executable
)
)
b
uildir
=
os
.
path
.
dirname
(
sys
.
executable
)
if
plat_specific
:
inc_dir
=
base
# python.h is located in the buildir
inc_dir
=
buildir
else
:
inc_dir
=
os
.
path
.
join
(
base
,
"Include"
)
if
not
os
.
path
.
exists
(
inc_dir
):
inc_dir
=
os
.
path
.
join
(
os
.
path
.
dirname
(
base
),
"Include"
)
# the source dir is relative to the buildir
srcdir
=
os
.
path
.
abspath
(
os
.
path
.
join
(
buildir
,
get_config_var
(
'srcdir'
)))
# Include is located in the srcdir
inc_dir
=
os
.
path
.
join
(
srcdir
,
"Include"
)
return
inc_dir
return
os
.
path
.
join
(
prefix
,
"include"
,
"python"
+
get_python_version
())
elif
os
.
name
==
"nt"
:
...
...
Misc/NEWS
Dosyayı görüntüle @
a5cd1827
...
...
@@ -31,6 +31,10 @@ Core and Builtins
Library
-------
- Issue #8577: distutils.sysconfig.get_python_inc() now makes a difference
between the build dir and the source dir when looking for "python.h" or
"Include".
- Issue #8464: tarfile no longer creates files with execute permissions set
when mode="w|" is used.
...
...
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