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
3c54ea6a
Kaydet (Commit)
3c54ea6a
authored
Ara 13, 2010
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Actually finish the tests for r87182
üst
1d5d6856
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
test_tempfile.py
Lib/test/test_tempfile.py
+5
-3
No files found.
Lib/test/test_tempfile.py
Dosyayı görüntüle @
3c54ea6a
...
...
@@ -928,9 +928,11 @@ class test_TemporaryDirectory(TC):
def
test_mkdtemp_failure
(
self
):
# Check no additional exception if mkdtemp fails
# Previously would raise AttributeError instead
# (noted as part of Issue #10888)
#with self.assertRaises(os.error):
tempfile
.
TemporaryDirectory
(
prefix
=
"[]<>?*!:"
)
# (noted as part of Issue #10188)
with
tempfile
.
TemporaryDirectory
()
as
nonexistent
:
pass
with
self
.
assertRaises
(
os
.
error
):
tempfile
.
TemporaryDirectory
(
dir
=
nonexistent
)
def
test_explicit_cleanup
(
self
):
# A TemporaryDirectory is deleted when cleaned up
...
...
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