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
ac6874c4
Kaydet (Commit)
ac6874c4
authored
Eki 06, 2011
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #7367: Add test case to test_pkgutil for walking path with
an unreadable directory.
üst
1a96f8de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
test_pkgutil.py
Lib/test/test_pkgutil.py
+11
-0
No files found.
Lib/test/test_pkgutil.py
Dosyayı görüntüle @
ac6874c4
...
...
@@ -78,6 +78,17 @@ class PkgutilTests(unittest.TestCase):
del
sys
.
modules
[
pkg
]
def
test_unreadable_dir_on_syspath
(
self
):
# issue7367 - walk_packages failed if unreadable dir on sys.path
package_name
=
"unreadable_package"
d
=
os
.
path
.
join
(
self
.
dirname
,
package_name
)
# this does not appear to create an unreadable dir on Windows
# but the test should not fail anyway
os
.
mkdir
(
d
,
0
)
for
t
in
pkgutil
.
walk_packages
(
path
=
[
self
.
dirname
]):
self
.
fail
(
"unexpected package found"
)
os
.
rmdir
(
d
)
class
PkgutilPEP302Tests
(
unittest
.
TestCase
):
class
MyTestLoader
(
object
):
...
...
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