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
abe72d7e
Kaydet (Commit)
abe72d7e
authored
Şub 22, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Try to debug sporadic test failures
üst
b43fde98
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
test_imp.py
Lib/test/test_imp.py
+5
-2
No files found.
Lib/test/test_imp.py
Dosyayı görüntüle @
abe72d7e
...
...
@@ -325,12 +325,15 @@ class PEP3147Tests(unittest.TestCase):
self
.
addCleanup
(
cleanup
)
# Touch the __init__.py file.
support
.
create_empty_file
(
'pep3147/__init__.py'
)
expected___file__
=
os
.
sep
.
join
((
'.'
,
'pep3147'
,
'__init__.py'
))
m
=
__import__
(
'pep3147'
)
self
.
assertEqual
(
m
.
__file__
,
expected___file__
,
(
m
.
__file__
,
m
.
__path__
))
# Ensure we load the pyc file.
support
.
forget
(
'pep3147'
)
m
=
__import__
(
'pep3147'
)
self
.
assertEqual
(
m
.
__file__
,
os
.
sep
.
join
((
'.'
,
'pep3147'
,
'__init__.py'
)))
support
.
forget
(
'pep3147'
)
sys
.
stdout
.
flush
()
self
.
assertEqual
(
m
.
__file__
,
expected___file__
,
(
m
.
__file__
,
m
.
__path__
))
class
NullImporterTests
(
unittest
.
TestCase
):
...
...
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