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
1cace1a3
Kaydet (Commit)
1cace1a3
authored
Kas 14, 2002
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
[Bug #550364] Use sysconfig.get_python_version()
üst
0ff98b93
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
bdist_wininst.py
Lib/distutils/command/bdist_wininst.py
+1
-1
build_ext.py
Lib/distutils/command/build_ext.py
+2
-2
No files found.
Lib/distutils/command/bdist_wininst.py
Dosyayı görüntüle @
1cace1a3
...
...
@@ -70,7 +70,7 @@ class bdist_wininst (Command):
if
not
self
.
target_version
:
self
.
target_version
=
""
if
self
.
distribution
.
has_ext_modules
():
short_version
=
sys
.
version
[:
3
]
short_version
=
get_python_version
()
if
self
.
target_version
and
self
.
target_version
!=
short_version
:
raise
DistutilsOptionError
,
\
"target version can only be"
+
short_version
...
...
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
1cace1a3
...
...
@@ -12,7 +12,7 @@ import sys, os, string, re
from
types
import
*
from
distutils.core
import
Command
from
distutils.errors
import
*
from
distutils.sysconfig
import
customize_compiler
from
distutils.sysconfig
import
customize_compiler
,
get_python_version
from
distutils.dep_util
import
newer_group
from
distutils.extension
import
Extension
from
distutils
import
log
...
...
@@ -184,7 +184,7 @@ class build_ext (Command):
if
string
.
find
(
sys
.
executable
,
sys
.
exec_prefix
)
!=
-
1
:
# building third party extensions
self
.
library_dirs
.
append
(
os
.
path
.
join
(
sys
.
prefix
,
"lib"
,
"python"
+
sys
.
version
[:
3
]
,
"python"
+
get_python_version
()
,
"config"
))
else
:
# building python standard extensions
...
...
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