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
70195da3
Kaydet (Commit)
70195da3
authored
Tem 28, 2001
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #443337: Fix incompatibilities in imputil's behavior.
üst
d3011cd1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
imputil.py
Lib/imputil.py
+9
-1
No files found.
Lib/imputil.py
Dosyayı görüntüle @
70195da3
...
...
@@ -125,6 +125,10 @@ class ImportManager:
if
importer
:
return
importer
.
_finish_import
(
top_module
,
parts
[
1
:],
fromlist
)
# Grrr, some people "import os.path"
if
len
(
parts
)
==
2
and
hasattr
(
top_module
,
parts
[
1
]):
return
top_module
# If the importer does not exist, then we have to bail. A missing
# importer means that something else imported the module, and we have
# no knowledge of how to get sub-modules out of the thing.
...
...
@@ -290,7 +294,11 @@ class Importer:
exec
code
in
module
.
__dict__
# fetch from sys.modules instead of returning module directly.
return
sys
.
modules
[
fqname
]
# also make module's __name__ agree with fqname, in case
# the "exec code in module.__dict__" played games on us.
module
=
sys
.
modules
[
fqname
]
module
.
__name__
=
fqname
return
module
def
_load_tail
(
self
,
m
,
parts
):
"""Import the rest of the modules, down from the top-level module.
...
...
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