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
c8bf8842
Kaydet (Commit)
c8bf8842
authored
Eyl 08, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added test for __all__.
üst
e632380b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
test_pkg
Lib/test/output/test_pkg
+7
-0
test_pkg.py
Lib/test/test_pkg.py
+15
-0
No files found.
Lib/test/output/test_pkg
Dosyayı görüntüle @
c8bf8842
...
@@ -29,3 +29,10 @@ t5.string loading
...
@@ -29,3 +29,10 @@ t5.string loading
['__builtins__', '__doc__', '__file__', '__name__', '__path__', 'foo', 'string', 't5']
['__builtins__', '__doc__', '__file__', '__name__', '__path__', 'foo', 'string', 't5']
['__builtins__', '__doc__', '__file__', '__name__', 'string']
['__builtins__', '__doc__', '__file__', '__name__', 'string']
['__builtins__', '__doc__', '__file__', '__name__', 'spam']
['__builtins__', '__doc__', '__file__', '__name__', 'spam']
running test t6
['__all__', '__builtins__', '__doc__', '__file__', '__name__', '__path__']
t6.spam loading
t6.ham loading
t6.eggs loading
['__all__', '__builtins__', '__doc__', '__file__', '__name__', '__path__', 'eggs', 'ham', 'spam']
['eggs', 'ham', 'spam', 't6']
Lib/test/test_pkg.py
Dosyayı görüntüle @
c8bf8842
...
@@ -146,6 +146,21 @@ import t5
...
@@ -146,6 +146,21 @@ import t5
print dir(t5)
print dir(t5)
print dir(t5.foo)
print dir(t5.foo)
print dir(t5.string)
print dir(t5.string)
"""
),
(
"t6"
,
[
(
"t6"
,
None
),
(
"t6 __init__.py"
,
"__all__ = ['spam', 'ham', 'eggs']"
),
(
"t6 spam.py"
,
"print __name__, 'loading'"
),
(
"t6 ham.py"
,
"print __name__, 'loading'"
),
(
"t6 eggs.py"
,
"print __name__, 'loading'"
),
],
"""
import t6
print dir(t6)
from t6 import *
print dir(t6)
print dir()
"""
),
"""
),
]
]
...
...
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