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
eca85181
Kaydet (Commit)
eca85181
authored
Nis 18, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge heads
üst
ec9bac42
d76bc7ab
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
30 deletions
+40
-30
_bootstrap.py
Lib/importlib/_bootstrap.py
+6
-10
test_caching.py
Lib/importlib/test/import_/test_caching.py
+28
-4
NEWS
Misc/NEWS
+0
-3
import.c
Python/import.c
+6
-13
importlib.h
Python/importlib.h
+0
-0
No files found.
Lib/importlib/_bootstrap.py
Dosyayı görüntüle @
eca85181
...
...
@@ -984,12 +984,12 @@ def _find_and_load(name, import_):
loader
=
_find_module
(
name
,
path
)
if
loader
is
None
:
raise
ImportError
(
_ERR_MSG
.
format
(
name
),
name
=
name
)
elif
name
in
sys
.
modules
:
# The parent module already imported this module.
module
=
sys
.
modules
[
name
]
else
:
module
=
loader
.
load_module
(
name
)
elif
name
not
in
sys
.
modules
:
# The parent import may have already imported this module.
loader
.
load_module
(
name
)
verbose_message
(
'import {!r} # {!r}'
,
name
,
loader
)
# Backwards-compatibility; be nicer to skip the dict lookup.
module
=
sys
.
modules
[
name
]
if
parent
:
# Set the module as an attribute on its parent.
parent_module
=
sys
.
modules
[
parent
]
...
...
@@ -1088,11 +1088,7 @@ def __import__(name, globals={}, locals={}, fromlist=[], level=0):
# Return up to the first dot in 'name'. This is complicated by the fact
# that 'name' may be relative.
if
level
==
0
:
index
=
name
.
find
(
'.'
)
if
index
==
-
1
:
return
module
else
:
return
sys
.
modules
[
name
[:
index
]]
return
sys
.
modules
[
name
.
partition
(
'.'
)[
0
]]
elif
not
name
:
return
module
else
:
...
...
Lib/importlib/test/import_/test_caching.py
Dosyayı görüntüle @
eca85181
...
...
@@ -47,12 +47,36 @@ class UseCache(unittest.TestCase):
mock
.
load_module
=
MethodType
(
load_module
,
mock
)
return
mock
def
test_using_loader_return
(
self
):
loader_return
=
'hi there!'
with
self
.
create_mock
(
'module'
,
return_
=
loader_return
)
as
mock
:
# __import__ inconsistent between loaders and built-in import when it comes
# to when to use the module in sys.modules and when not to.
@import_util.importlib_only
def
test_using_cache_after_loader
(
self
):
# [from cache on return]
with
self
.
create_mock
(
'module'
)
as
mock
:
with
util
.
import_state
(
meta_path
=
[
mock
]):
module
=
import_util
.
import_
(
'module'
)
self
.
assertEqual
(
module
,
loader_return
)
self
.
assertEqual
(
id
(
module
),
id
(
sys
.
modules
[
'module'
]))
# See test_using_cache_after_loader() for reasoning.
@import_util.importlib_only
def
test_using_cache_for_assigning_to_attribute
(
self
):
# [from cache to attribute]
with
self
.
create_mock
(
'pkg.__init__'
,
'pkg.module'
)
as
importer
:
with
util
.
import_state
(
meta_path
=
[
importer
]):
module
=
import_util
.
import_
(
'pkg.module'
)
self
.
assertTrue
(
hasattr
(
module
,
'module'
))
self
.
assertTrue
(
id
(
module
.
module
),
id
(
sys
.
modules
[
'pkg.module'
]))
# See test_using_cache_after_loader() for reasoning.
@import_util.importlib_only
def
test_using_cache_for_fromlist
(
self
):
# [from cache for fromlist]
with
self
.
create_mock
(
'pkg.__init__'
,
'pkg.module'
)
as
importer
:
with
util
.
import_state
(
meta_path
=
[
importer
]):
module
=
import_util
.
import_
(
'pkg'
,
fromlist
=
[
'module'
])
self
.
assertTrue
(
hasattr
(
module
,
'module'
))
self
.
assertEqual
(
id
(
module
.
module
),
id
(
sys
.
modules
[
'pkg.module'
]))
def
test_main
():
...
...
Misc/NEWS
Dosyayı görüntüle @
eca85181
...
...
@@ -23,9 +23,6 @@ Core and Builtins
fails to import now uses the new path and name attributes from
Issue #1559549.
- Issue #14582: Import directly returns the module as returned by a loader when
possible instead of fetching it from sys.modules.
- Issue #13889: Check and (if necessary) set FPU control word before calling
any of the dtoa.c string <-> float conversion functions, on MSVC builds of
Python. This fixes issues when embedding Python in a Delphi app.
...
...
Python/import.c
Dosyayı görüntüle @
eca85181
...
...
@@ -2447,22 +2447,15 @@ PyImport_ImportModuleLevelObject(PyObject *name, PyObject *given_globals,
Py_DECREF
(
partition
);
if
(
level
==
0
)
{
if
(
PyUnicode_GET_LENGTH
(
name
)
==
PyUnicode_GET_LENGTH
(
front
))
{
final_mod
=
mod
;
}
else
{
final_mod
=
PyDict_GetItem
(
interp
->
modules
,
front
);
if
(
final_mod
==
NULL
)
{
PyErr_Format
(
PyExc_KeyError
,
"%R not in sys.modules as expected"
,
front
);
}
}
final_mod
=
PyDict_GetItem
(
interp
->
modules
,
front
);
Py_DECREF
(
front
);
if
(
final_mod
==
NULL
)
{
goto
error_with_unlock
;
PyErr_Format
(
PyExc_KeyError
,
"%R not in sys.modules as expected"
,
front
);
}
else
{
Py_INCREF
(
final_mod
);
}
Py_INCREF
(
final_mod
);
}
else
{
Py_ssize_t
cut_off
=
PyUnicode_GET_LENGTH
(
name
)
-
...
...
Python/importlib.h
Dosyayı görüntüle @
eca85181
This diff is collapsed.
Click to expand it.
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