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
af8566c8
Kaydet (Commit)
af8566c8
authored
Eki 03, 2013
tarafından
Eric Snow
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
[issue19152] Add ExtensionFileLoader.get_filename().
üst
efbc4752
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
1 deletion
+14
-1
importlib.rst
Doc/library/importlib.rst
+5
-1
_bootstrap.py
Lib/importlib/_bootstrap.py
+5
-0
abc.py
Lib/importlib/abc.py
+2
-0
NEWS
Misc/NEWS
+2
-0
importlib.h
Python/importlib.h
+0
-0
No files found.
Doc/library/importlib.rst
Dosyayı görüntüle @
af8566c8
...
...
@@ -800,7 +800,7 @@ find and load modules.
..
class
::
ExtensionFileLoader
(
fullname
,
path
)
A
concrete
implementation
of
:
class
:`
importlib
.
abc
.
Inspect
Loader
`
for
A
concrete
implementation
of
:
class
:`
importlib
.
abc
.
Execution
Loader
`
for
extension
modules
.
The
*
fullname
*
argument
specifies
the
name
of
the
module
the
loader
is
to
...
...
@@ -834,6 +834,10 @@ find and load modules.
Returns
``
None
``
as
extension
modules
do
not
have
source
code
.
..
method
::
get_filename
(
fullname
)
Returns
:
attr
:`
path
`.
:
mod
:`
importlib
.
util
`
--
Utility
code
for
importers
---------------------------------------------------
...
...
Lib/importlib/_bootstrap.py
Dosyayı görüntüle @
af8566c8
...
...
@@ -1153,6 +1153,11 @@ class ExtensionFileLoader:
"""Return None as extension modules have no source code."""
return
None
@_check_name
def
get_filename
(
self
,
fullname
):
"""Return the path to the source file as found by the finder."""
return
self
.
path
class
_NamespacePath
:
"""Represents a namespace package's path. It uses the module name
...
...
Lib/importlib/abc.py
Dosyayı görüntüle @
af8566c8
...
...
@@ -168,6 +168,8 @@ class ExecutionLoader(InspectLoader):
set to."""
raise
NotImplementedError
_register
(
machinery
.
ExtensionFileLoader
)
class
FileLoader
(
_bootstrap
.
FileLoader
,
ResourceLoader
,
ExecutionLoader
):
...
...
Misc/NEWS
Dosyayı görüntüle @
af8566c8
...
...
@@ -206,6 +206,8 @@ Library
- Issue #19151: Fix docstring and use of _get_suppported_file_loaders() to
reflect 2-tuples.
- Issue #19152: Add ExtensionFileLoader.get_filename().
- Issue #18676: Change '
positive
' to '
non
-
negative
' in queue.py put and get
docstrings and ValueError messages. Patch by Zhongyue Luo
...
...
Python/importlib.h
Dosyayı görüntüle @
af8566c8
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