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
773c83be
Kaydet (Commit)
773c83be
authored
Eyl 05, 2001
tarafından
Mark Hammond
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for bug #442374 - Modulefinder registry support broken
üst
b479dc56
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
13 deletions
+36
-13
modulefinder.py
Tools/freeze/modulefinder.py
+36
-13
No files found.
Tools/freeze/modulefinder.py
Dosyayı görüntüle @
773c83be
...
...
@@ -47,6 +47,38 @@ class Module:
s
=
s
+
")"
return
s
_warned
=
0
def
_try_registry
(
name
):
# Emulate the Registered Module support on Windows.
try
:
import
_winreg
RegQueryValue
=
_winreg
.
QueryValue
HKLM
=
_winreg
.
HKEY_LOCAL_MACHINE
exception
=
_winreg
.
error
except
ImportError
:
try
:
import
win32api
RegQueryValue
=
win32api
.
RegQueryValue
HKLM
=
0x80000002
# HKEY_LOCAL_MACHINE
exception
=
win32api
.
error
except
ImportError
:
global
_warned
if
not
_warned
:
_warned
=
1
print
"Warning: Neither _winreg nor win32api is available - modules"
print
"listed in the registry will not be found"
return
None
try
:
pathname
=
RegQueryValue
(
HKLM
,
\
r"Software\Python\PythonCore\%s\Modules\%s"
%
(
sys
.
winver
,
name
))
fp
=
open
(
pathname
,
"rb"
)
except
exception
:
return
None
else
:
# XXX - To do - remove the hard code of C_EXTENSION.
stuff
=
""
,
"rb"
,
imp
.
C_EXTENSION
return
fp
,
pathname
,
stuff
class
ModuleFinder
:
...
...
@@ -332,20 +364,11 @@ class ModuleFinder:
if
name
in
sys
.
builtin_module_names
:
return
(
None
,
None
,
(
""
,
""
,
imp
.
C_BUILTIN
))
# Emulate the Registered Module support on Windows.
if
sys
.
platform
==
"win32"
:
import
_winreg
from
_winreg
import
HKEY_LOCAL_MACHINE
try
:
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
_winreg
.
error
:
pass
result
=
_try_registry
(
name
)
if
result
:
return
result
path
=
self
.
path
return
imp
.
find_module
(
name
,
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