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
211219af
Kaydet (Commit)
211219af
authored
May 23, 2006
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace normalization.
üst
1bddfb84
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
7 deletions
+6
-7
unixccompiler.py
Lib/distutils/unixccompiler.py
+1
-1
util.py
Lib/distutils/util.py
+4
-4
struct.py
Lib/struct.py
+1
-2
build-installer.py
Mac/OSX/BuildScript/build-installer.py
+0
-0
No files found.
Lib/distutils/unixccompiler.py
Dosyayı görüntüle @
211219af
...
...
@@ -220,7 +220,7 @@ class UnixCCompiler(CCompiler):
# skip over environment variable settings if /usr/bin/env
# is used to set up the linker's environment.
# This is needed on OSX. Note: this assumes that the
# normal and C++ compiler have the same environment
# normal and C++ compiler have the same environment
# settings.
i
=
0
if
os
.
path
.
basename
(
linker
[
0
])
==
"env"
:
...
...
Lib/distutils/util.py
Dosyayı görüntüle @
211219af
...
...
@@ -69,10 +69,10 @@ def get_platform ():
release
=
m
.
group
()
elif
osname
[:
6
]
==
"darwin"
:
#
# For our purposes, we'll assume that the system version from
# distutils' perspective is what MACOSX_DEPLOYMENT_TARGET is set
# For our purposes, we'll assume that the system version from
# distutils' perspective is what MACOSX_DEPLOYMENT_TARGET is set
# to. This makes the compatibility story a bit more sane because the
# machine is going to compile and link as if it were
# machine is going to compile and link as if it were
# MACOSX_DEPLOYMENT_TARGET.
from
distutils.sysconfig
import
get_config_vars
cfgvars
=
get_config_vars
()
...
...
@@ -97,7 +97,7 @@ def get_platform ():
r'<string>(.*?)</string>'
,
f
.
read
())
f
.
close
()
if
m
is
not
None
:
macver
=
'.'
.
join
(
m
.
group
(
1
)
.
split
(
'.'
)[:
2
])
macver
=
'.'
.
join
(
m
.
group
(
1
)
.
split
(
'.'
)[:
2
])
# else: fall back to the default behaviour
if
macver
:
...
...
Lib/struct.py
Dosyayı görüntüle @
211219af
...
...
@@ -50,7 +50,7 @@ def calcsize(fmt):
except
KeyError
:
o
=
_compile
(
fmt
)
return
o
.
size
def
pack
(
fmt
,
*
args
):
"""
Return string containing values v1, v2, ... packed according to fmt.
...
...
@@ -73,4 +73,3 @@ def unpack(fmt, s):
except
KeyError
:
o
=
_compile
(
fmt
)
return
o
.
unpack
(
s
)
Mac/OSX/BuildScript/build-installer.py
Dosyayı görüntüle @
211219af
This diff is collapsed.
Click to expand it.
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