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
ab9b31f9
Kaydet (Commit)
ab9b31f9
authored
Mar 08, 2019
tarafından
Anthony Sottile
Kaydeden (comit)
Miss Islington (bot)
Mar 08, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-35843: Implement __getitem__ for _NamespacePath (GH-11690)
üst
8a1bab92
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
0 deletions
+10
-0
_bootstrap_external.py
Lib/importlib/_bootstrap_external.py
+3
-0
test_namespace_pkgs.py
Lib/test/test_importlib/test_namespace_pkgs.py
+6
-0
2019-01-28-10-19-40.bpo-35843.7rXGQE.rst
...S.d/next/Library/2019-01-28-10-19-40.bpo-35843.7rXGQE.rst
+1
-0
importlib_external.h
Python/importlib_external.h
+0
-0
No files found.
Lib/importlib/_bootstrap_external.py
Dosyayı görüntüle @
ab9b31f9
...
@@ -1163,6 +1163,9 @@ class _NamespacePath:
...
@@ -1163,6 +1163,9 @@ class _NamespacePath:
def
__iter__
(
self
):
def
__iter__
(
self
):
return
iter
(
self
.
_recalculate
())
return
iter
(
self
.
_recalculate
())
def
__getitem__
(
self
,
index
):
return
self
.
_recalculate
()[
index
]
def
__setitem__
(
self
,
index
,
path
):
def
__setitem__
(
self
,
index
,
path
):
self
.
_path
[
index
]
=
path
self
.
_path
[
index
]
=
path
...
...
Lib/test/test_importlib/test_namespace_pkgs.py
Dosyayı görüntüle @
ab9b31f9
...
@@ -332,6 +332,12 @@ class LoaderTests(NamespacePackageTest):
...
@@ -332,6 +332,12 @@ class LoaderTests(NamespacePackageTest):
self
.
assertIsNone
(
foo
.
__spec__
.
origin
)
self
.
assertIsNone
(
foo
.
__spec__
.
origin
)
self
.
assertIsNone
(
foo
.
__file__
)
self
.
assertIsNone
(
foo
.
__file__
)
def
test_path_indexable
(
self
):
# bpo-35843
import
foo
expected_path
=
os
.
path
.
join
(
self
.
root
,
'portion1'
,
'foo'
)
self
.
assertEqual
(
foo
.
__path__
[
0
],
expected_path
)
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
unittest
.
main
()
unittest
.
main
()
Misc/NEWS.d/next/Library/2019-01-28-10-19-40.bpo-35843.7rXGQE.rst
0 → 100644
Dosyayı görüntüle @
ab9b31f9
Implement ``__getitem__`` for ``_NamespacePath``. Patch by Anthony Sottile.
Python/importlib_external.h
Dosyayı görüntüle @
ab9b31f9
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