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
d304f449
Kaydet (Commit)
d304f449
authored
Ock 21, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #103343: Allow the important test_pkg to succeed under Jython.
üst
db786876
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
test_pkg
Lib/test/output/test_pkg
+3
-3
test_pkg.py
Lib/test/test_pkg.py
+3
-3
No files found.
Lib/test/output/test_pkg
Dosyayı görüntüle @
d304f449
...
...
@@ -38,8 +38,8 @@ t6.eggs loading
['eggs', 'ham', 'spam', 't6']
running test t7
t7 loading
['__
builtins__', '__
doc__', '__file__', '__name__', '__path__']
['__
builtins__', '__
doc__', '__file__', '__name__', '__path__']
['__doc__', '__file__', '__name__', '__path__']
['__doc__', '__file__', '__name__', '__path__']
t7.sub.subsub loading
['__
builtins__', '__
doc__', '__file__', '__name__', '__path__', 'spam']
['__doc__', '__file__', '__name__', '__path__', 'spam']
t7.sub.subsub.spam = 1
Lib/test/test_pkg.py
Dosyayı görüntüle @
d304f449
...
...
@@ -187,13 +187,13 @@ print dir()
"""
t7, sub, subsub = None, None, None
import t7 as tas
print
dir(tas
)
print
fixdir(dir(tas)
)
verify(not t7)
from t7 import sub as subpar
print
dir(subpar
)
print
fixdir(dir(subpar)
)
verify(not t7 and not sub)
from t7.sub import subsub as subsubsub
print
dir(subsubsub
)
print
fixdir(dir(subsubsub)
)
verify(not t7 and not sub and not subsub)
from t7.sub.subsub import spam as ham
print "t7.sub.subsub.spam =", ham
...
...
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