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
0f1e1fc3
Kaydet (Commit)
0f1e1fc3
authored
May 26, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Don't die if win32api doesn't exist.
üst
55b40b06
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
checkextensions_win32.py
Tools/freeze/checkextensions_win32.py
+6
-1
No files found.
Tools/freeze/checkextensions_win32.py
Dosyayı görüntüle @
0f1e1fc3
...
...
@@ -20,7 +20,11 @@ At the moment the name and location of this INI file is hardcoded,
but an obvious enhancement would be to provide command line options.
"""
import
os
,
win32api
,
string
,
sys
import
os
,
string
,
sys
try
:
import
win32api
except
ImportError
:
win32api
=
None
# User has already been warned
class
CExtension
:
"""An abstraction of an extension implemented in C/C++
...
...
@@ -60,6 +64,7 @@ def checkextensions(unknown, ignored):
return
ret
def
get_extension_defn
(
moduleName
,
mapFileName
):
if
win32api
is
None
:
return
None
dsp
=
win32api
.
GetProfileVal
(
moduleName
,
"dsp"
,
""
,
mapFileName
)
if
dsp
==
""
:
sys
.
stderr
.
write
(
"No definition of module
%
s in map file '
%
s'
\n
"
%
(
moduleName
,
mapFileName
))
...
...
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