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
b7f1be30
Kaydet (Commit)
b7f1be30
authored
May 13, 2014
tarafından
Eric Snow
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge from 3.4 (for #21226).
üst
38d3d22b
08197a46
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
44 additions
and
21 deletions
+44
-21
import.rst
Doc/c-api/import.rst
+7
-1
_bootstrap.py
Lib/importlib/_bootstrap.py
+23
-0
NEWS
Misc/NEWS
+2
-0
import.c
Python/import.c
+12
-20
importlib.h
Python/importlib.h
+0
-0
No files found.
Doc/c-api/import.rst
Dosyayı görüntüle @
b7f1be30
...
...
@@ -132,8 +132,14 @@ Importing Modules
such modules have no way to know that the module object is an unknown (and
probably damaged with respect to the module author's intents) state.
The module's :attr:`__spec__` and :attr:`__loader__` will be set, if
not set already, with the appropriate values. The spec's loader will
be set to the module's ``__loader__`` (if set) and to an instance of
:class:`SourceFileLoader` otherwise.
The module's :attr:`__file__` attribute will be set to the code object's
:c:member:`co_filename`.
:c:member:`co_filename`. If applicable, :attr:`__cached__` will also
be set.
This function will reload the module if it was already imported. See
:c:func:`PyImport_ReloadModule` for the intended way to reload a module.
...
...
Lib/importlib/_bootstrap.py
Dosyayı görüntüle @
b7f1be30
...
...
@@ -1221,6 +1221,29 @@ class _SpecMethods:
return
self
.
_load_unlocked
()
def
_fix_up_module
(
ns
,
name
,
pathname
,
cpathname
=
None
):
# This function is used by PyImport_ExecCodeModuleObject().
loader
=
ns
.
get
(
'__loader__'
)
spec
=
ns
.
get
(
'__spec__'
)
if
not
loader
:
if
spec
:
loader
=
spec
.
loader
elif
pathname
==
cpathname
:
loader
=
SourcelessFileLoader
(
name
,
pathname
)
else
:
loader
=
SourceFileLoader
(
name
,
pathname
)
if
not
spec
:
spec
=
spec_from_file_location
(
name
,
pathname
,
loader
=
loader
)
try
:
ns
[
'__spec__'
]
=
spec
ns
[
'__loader__'
]
=
loader
ns
[
'__file__'
]
=
pathname
ns
[
'__cached__'
]
=
cpathname
except
Exception
:
# Not important enough to report.
pass
# Loaders #####################################################################
class
BuiltinImporter
:
...
...
Misc/NEWS
Dosyayı görüntüle @
b7f1be30
...
...
@@ -364,6 +364,8 @@ Extension Modules
- Issue #21407: _decimal: The module now supports function signatures.
- Issue #21276: posixmodule: Don'
t
define
USE_XATTRS
on
KFreeBSD
and
the
Hurd
.
-
Issue
#
21226
:
Set
up
modules
properly
in
PyImport_ExecCodeModuleObject
(
and
friends
).
IDLE
----
...
...
Python/import.c
Dosyayı görüntüle @
b7f1be30
...
...
@@ -856,7 +856,7 @@ module_dict_for_exec(PyObject *name)
}
}
return
d
;
return
d
;
/* Return a borrowed reference. */
}
static
PyObject
*
...
...
@@ -888,33 +888,25 @@ PyObject*
PyImport_ExecCodeModuleObject
(
PyObject
*
name
,
PyObject
*
co
,
PyObject
*
pathname
,
PyObject
*
cpathname
)
{
PyObject
*
d
,
*
v
;
PyObject
*
d
,
*
res
;
PyInterpreterState
*
interp
=
PyThreadState_GET
()
->
interp
;
_Py_IDENTIFIER
(
_fix_up_module
);
d
=
module_dict_for_exec
(
name
);
if
(
d
==
NULL
)
{
return
NULL
;
}
if
(
pathname
!
=
NULL
)
{
v
=
path
name
;
if
(
pathname
=
=
NULL
)
{
pathname
=
((
PyCodeObject
*
)
co
)
->
co_file
name
;
}
else
{
v
=
((
PyCodeObject
*
)
co
)
->
co_filename
;
res
=
_PyObject_CallMethodIdObjArgs
(
interp
->
importlib
,
&
PyId__fix_up_module
,
d
,
name
,
pathname
,
cpathname
,
NULL
);
if
(
res
!=
NULL
)
{
res
=
exec_code_in_module
(
name
,
d
,
co
);
}
Py_INCREF
(
v
);
if
(
PyDict_SetItemString
(
d
,
"__file__"
,
v
)
!=
0
)
PyErr_Clear
();
/* Not important enough to report */
Py_DECREF
(
v
);
/* Remember the pyc path name as the __cached__ attribute. */
if
(
cpathname
!=
NULL
)
v
=
cpathname
;
else
v
=
Py_None
;
if
(
PyDict_SetItemString
(
d
,
"__cached__"
,
v
)
!=
0
)
PyErr_Clear
();
/* Not important enough to report */
return
exec_code_in_module
(
name
,
d
,
co
);
return
res
;
}
...
...
Python/importlib.h
Dosyayı görüntüle @
b7f1be30
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