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
c218a2fa
Kaydet (Commit)
c218a2fa
authored
Ara 03, 2009
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4120: Drop reference to CRT from manifest when building
extensions with msvc9compiler.
üst
3dc25418
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
0 deletions
+26
-0
msvc9compiler.py
Lib/distutils/msvc9compiler.py
+23
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/distutils/msvc9compiler.py
Dosyayı görüntüle @
c218a2fa
...
@@ -17,6 +17,7 @@ __revision__ = "$Id$"
...
@@ -17,6 +17,7 @@ __revision__ = "$Id$"
import
os
import
os
import
subprocess
import
subprocess
import
sys
import
sys
import
re
from
distutils.errors
import
DistutilsExecError
,
DistutilsPlatformError
,
\
from
distutils.errors
import
DistutilsExecError
,
DistutilsPlatformError
,
\
CompileError
,
LibError
,
LinkError
CompileError
,
LibError
,
LinkError
...
@@ -646,6 +647,28 @@ class MSVCCompiler(CCompiler) :
...
@@ -646,6 +647,28 @@ class MSVCCompiler(CCompiler) :
mfid
=
1
mfid
=
1
else
:
else
:
mfid
=
2
mfid
=
2
try
:
# Remove references to the Visual C runtime, so they will
# fall through to the Visual C dependency of Python.exe.
# This way, when installed for a restricted user (e.g.
# runtimes are not in WinSxS folder, but in Python's own
# folder), the runtimes do not need to be in every folder
# with .pyd's.
manifest_f
=
open
(
temp_manifest
,
"rb"
)
manifest_buf
=
manifest_f
.
read
()
manifest_f
.
close
()
pattern
=
re
.
compile
(
r"""<assemblyIdentity.*?name=("|')Microsoft\."""
\
r"""VC\d{2}\.CRT("|').*?(/>|</assemblyIdentity>)"""
,
re
.
DOTALL
)
manifest_buf
=
re
.
sub
(
pattern
,
""
,
manifest_buf
)
pattern
=
"<dependentAssembly>
\
s*</dependentAssembly>"
manifest_buf
=
re
.
sub
(
pattern
,
""
,
manifest_buf
)
manifest_f
=
open
(
temp_manifest
,
"wb"
)
manifest_f
.
write
(
manifest_buf
)
manifest_f
.
close
()
except
IOError
:
pass
out_arg
=
'-outputresource:
%
s;
%
s'
%
(
output_filename
,
mfid
)
out_arg
=
'-outputresource:
%
s;
%
s'
%
(
output_filename
,
mfid
)
try
:
try
:
self
.
spawn
([
'mt.exe'
,
'-nologo'
,
'-manifest'
,
self
.
spawn
([
'mt.exe'
,
'-nologo'
,
'-manifest'
,
...
...
Misc/NEWS
Dosyayı görüntüle @
c218a2fa
...
@@ -495,6 +495,9 @@ Core and Builtins
...
@@ -495,6 +495,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #4120: Drop reference to CRT from manifest when building extensions with
msvc9compiler.
- Issue #7333: The `posix` module gains an `initgroups()` function providing
- Issue #7333: The `posix` module gains an `initgroups()` function providing
access to the initgroups(3) C library call on Unix systems which implement
access to the initgroups(3) C library call on Unix systems which implement
it. Patch by Jean-Paul Calderone.
it. Patch by Jean-Paul Calderone.
...
...
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