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
9bd059ff
Kaydet (Commit)
9bd059ff
authored
Agu 04, 2008
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Silence warnings under -3 about using dict.has_key() for modulefinder.
üst
5dd504df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modulefinder.py
Lib/modulefinder.py
+4
-3
No files found.
Lib/modulefinder.py
Dosyayı görüntüle @
9bd059ff
...
...
@@ -258,7 +258,7 @@ class ModuleFinder:
else
:
self
.
msgout
(
3
,
"import_module ->"
,
m
)
return
m
if
self
.
badmodules
.
has_key
(
fqname
)
:
if
fqname
in
self
.
badmodules
:
self
.
msgout
(
3
,
"import_module -> None"
)
return
None
if
parent
and
parent
.
__path__
is
None
:
...
...
@@ -279,7 +279,8 @@ class ModuleFinder:
self
.
msgout
(
3
,
"import_module ->"
,
m
)
return
m
def
load_module
(
self
,
fqname
,
fp
,
pathname
,
(
suffix
,
mode
,
type
)):
def
load_module
(
self
,
fqname
,
fp
,
pathname
,
file_info
):
suffix
,
mode
,
type
=
file_info
self
.
msgin
(
2
,
"load_module"
,
fqname
,
fp
and
"fp"
,
pathname
)
if
type
==
imp
.
PKG_DIRECTORY
:
m
=
self
.
load_package
(
fqname
,
pathname
)
...
...
@@ -460,7 +461,7 @@ class ModuleFinder:
return
m
def
add_module
(
self
,
fqname
):
if
self
.
modules
.
has_key
(
fqname
)
:
if
fqname
in
self
.
modules
:
return
self
.
modules
[
fqname
]
self
.
modules
[
fqname
]
=
m
=
Module
(
fqname
)
return
m
...
...
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