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
f1b5a0e3
Kaydet (Commit)
f1b5a0e3
authored
May 18, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add a feature to support specifying an additional search directory for
packages. (Mark Hammond) Remove Emacs cruft.
üst
5109ffd6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
4 deletions
+17
-4
modulefinder.py
Tools/freeze/modulefinder.py
+17
-4
No files found.
Tools/freeze/modulefinder.py
Dosyayı görüntüle @
f1b5a0e3
...
...
@@ -22,6 +22,19 @@ if sys.platform=="win32":
IMPORT_NAME
=
dis
.
opname
.
index
(
'IMPORT_NAME'
)
IMPORT_FROM
=
dis
.
opname
.
index
(
'IMPORT_FROM'
)
# Modulefinder does a good job at simulating Python's, but it can not
# handle __path__ modifications packages make at runtime. Therefore there
# is a mechanism whereby you can register extra paths in this map for a
# package, and it will be honoured.
# Note this is a mapping is lists of paths.
packagePathMap
=
{}
# A Public interface
def
AddPackagePath
(
packagename
,
path
):
paths
=
packagePathMap
.
get
(
packagename
,
[])
paths
.
append
(
path
)
packagePathMap
[
packagename
]
=
paths
class
Module
:
...
...
@@ -288,6 +301,10 @@ class ModuleFinder:
m
=
self
.
add_module
(
fqname
)
m
.
__file__
=
pathname
m
.
__path__
=
[
pathname
]
# As per comment at top of file, simulate runtime __path__ additions.
m
.
__path__
=
m
.
__path__
+
packagePathMap
.
get
(
fqname
,
[])
fp
,
buf
,
stuff
=
self
.
find_module
(
"__init__"
,
m
.
__path__
)
self
.
load_module
(
fqname
,
fp
,
buf
,
stuff
)
self
.
msgout
(
2
,
"load_package ->"
,
m
)
...
...
@@ -405,7 +422,3 @@ if __name__ == '__main__':
test
()
except
KeyboardInterrupt
:
print
"
\n
[interrupt]"
# Local Variables:
# indent-tabs-mode: nil
# End:
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