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
d3d7bb1c
Kaydet (Commit)
d3d7bb1c
authored
Kas 06, 2000
tarafından
Mark Hammond
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Application of [ Patch #102226 ] freeze/modulefinder.py should use _winreg, not win32api
üst
fad27aee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
15 deletions
+6
-15
modulefinder.py
Tools/freeze/modulefinder.py
+6
-15
No files found.
Tools/freeze/modulefinder.py
Dosyayı görüntüle @
d3d7bb1c
...
...
@@ -8,17 +8,6 @@ import re
import
string
import
sys
if
sys
.
platform
==
"win32"
:
# On Windows, we can locate modules in the registry with
# the help of the win32api package.
try
:
import
win32api
except
ImportError
:
print
"The win32api module is not available - modules listed"
print
"in the registry will not be found."
win32api
=
None
IMPORT_NAME
=
dis
.
opname
.
index
(
'IMPORT_NAME'
)
IMPORT_FROM
=
dis
.
opname
.
index
(
'IMPORT_FROM'
)
STORE_NAME
=
dis
.
opname
.
index
(
'STORE_NAME'
)
...
...
@@ -339,15 +328,17 @@ class ModuleFinder:
return
(
None
,
None
,
(
""
,
""
,
imp
.
C_BUILTIN
))
# Emulate the Registered Module support on Windows.
if
sys
.
platform
==
"win32"
and
win32api
is
not
None
:
HKEY_LOCAL_MACHINE
=
0x80000002
if
sys
.
platform
==
"win32"
:
import
_winreg
from
_winreg
import
HKEY_LOCAL_MACHINE
try
:
pathname
=
win32api
.
RegQueryValue
(
HKEY_LOCAL_MACHINE
,
"Software
\\
Python
\\
PythonCore
\\
%
s
\\
Modules
\\
%
s"
%
(
sys
.
winver
,
name
))
pathname
=
_winreg
.
QueryValueEx
(
HKEY_LOCAL_MACHINE
,
\
"Software
\\
Python
\\
PythonCore
\\
%
s
\\
Modules
\\
%
s"
%
(
sys
.
winver
,
name
))
fp
=
open
(
pathname
,
"rb"
)
# XXX - To do - remove the hard code of C_EXTENSION.
stuff
=
""
,
"rb"
,
imp
.
C_EXTENSION
return
fp
,
pathname
,
stuff
except
win32api
.
error
:
except
_winreg
.
error
:
pass
path
=
self
.
path
...
...
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