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
d4daa871
Kaydet (Commit)
d4daa871
authored
Haz 23, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Properly cleanup pep3147 modules in test_import
üst
06e37587
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
test_import.py
Lib/test/test_import.py
+4
-4
No files found.
Lib/test/test_import.py
Dosyayı görüntüle @
d4daa871
...
...
@@ -636,6 +636,8 @@ class PycacheTests(unittest.TestCase):
# Like test___cached__ but for packages.
def
cleanup
():
rmtree
(
'pep3147'
)
unload
(
'pep3147.foo'
)
unload
(
'pep3147'
)
os
.
mkdir
(
'pep3147'
)
self
.
addCleanup
(
cleanup
)
# Touch the __init__.py
...
...
@@ -643,8 +645,6 @@ class PycacheTests(unittest.TestCase):
pass
with
open
(
os
.
path
.
join
(
'pep3147'
,
'foo.py'
),
'w'
):
pass
unload
(
'pep3147.foo'
)
unload
(
'pep3147'
)
importlib
.
invalidate_caches
()
m
=
__import__
(
'pep3147.foo'
)
init_pyc
=
imp
.
cache_from_source
(
...
...
@@ -659,10 +659,10 @@ class PycacheTests(unittest.TestCase):
# PEP 3147 pyc file.
def
cleanup
():
rmtree
(
'pep3147'
)
unload
(
'pep3147.foo'
)
unload
(
'pep3147'
)
os
.
mkdir
(
'pep3147'
)
self
.
addCleanup
(
cleanup
)
unload
(
'pep3147.foo'
)
unload
(
'pep3147'
)
# Touch the __init__.py
with
open
(
os
.
path
.
join
(
'pep3147'
,
'__init__.py'
),
'w'
):
pass
...
...
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