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
9eeea48c
Kaydet (Commit)
9eeea48c
authored
Tem 26, 2012
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- Issue #15458: python-config gets a new option --configdir to print the
$LIBPL value.
üst
3bbd2fad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
NEWS
Misc/NEWS
+3
-0
python-config.in
Misc/python-config.in
+4
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
9eeea48c
...
...
@@ -184,6 +184,9 @@ Extension Modules
Tools/Demos
-----------
- Issue #15458: python-config gets a new option --configdir to print the
$LIBPL value.
- Move importlib.test.benchmark to Tools/importbench.
- Issue #12605: The gdb hooks for debugging CPython (within Tools/gdb) have
...
...
Misc/python-config.in
Dosyayı görüntüle @
9eeea48c
...
...
@@ -7,7 +7,7 @@ import sys
import
sysconfig
valid_opts
=
[
'prefix'
,
'exec-prefix'
,
'includes'
,
'libs'
,
'cflags'
,
'ldflags'
,
'extension-suffix'
,
'help'
,
'abiflags'
]
'ldflags'
,
'extension-suffix'
,
'help'
,
'abiflags'
,
'configdir'
]
def
exit_with_usage
(
code
=
1
):
print
(
"Usage: {0} [{1}]"
.
format
(
...
...
@@ -61,3 +61,6 @@ for opt in opt_flags:
elif
opt
==
'--abiflags'
:
print
(
sys
.
abiflags
)
elif
opt
==
'--configdir'
:
print
(
sysconfig
.
get_config_var
(
'LIBPL'
))
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