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
7f462fc8
Kaydet (Commit)
7f462fc8
authored
Eki 29, 2010
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix file closing in test_http_cookiejar.
üst
918e2d48
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
test_http_cookiejar.py
Lib/test/test_http_cookiejar.py
+5
-5
No files found.
Lib/test/test_http_cookiejar.py
Dosyayı görüntüle @
7f462fc8
...
...
@@ -263,11 +263,11 @@ class FileCookieJarTests(unittest.TestCase):
# Invalid contents of cookies file (eg. bad magic string)
# causes a LoadError.
try
:
f
=
open
(
filename
,
"w"
)
f
.
write
(
"oops
\n
"
)
for
cookiejar_class
in
LWPCookieJar
,
MozillaCookieJar
:
c
=
cookiejar_class
()
self
.
assertRaises
(
LoadError
,
c
.
load
,
filename
)
with
open
(
filename
,
"w"
)
as
f
:
f
.
write
(
"oops
\n
"
)
for
cookiejar_class
in
LWPCookieJar
,
MozillaCookieJar
:
c
=
cookiejar_class
()
self
.
assertRaises
(
LoadError
,
c
.
load
,
filename
)
finally
:
try
:
os
.
unlink
(
filename
)
except
OSError
:
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