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
11b41f69
Kaydet (Commit)
11b41f69
authored
Haz 20, 2007
tarafından
Walter Dörwald
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Open files in binary mode.
üst
38e6a69a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
pickletester.py
Lib/test/pickletester.py
+2
-2
No files found.
Lib/test/pickletester.py
Dosyayı görüntüle @
11b41f69
...
@@ -936,7 +936,7 @@ class AbstractPickleModuleTests(unittest.TestCase):
...
@@ -936,7 +936,7 @@ class AbstractPickleModuleTests(unittest.TestCase):
def
test_dump_closed_file
(
self
):
def
test_dump_closed_file
(
self
):
import
os
import
os
f
=
open
(
TESTFN
,
"w"
)
f
=
open
(
TESTFN
,
"w
b
"
)
try
:
try
:
f
.
close
()
f
.
close
()
self
.
assertRaises
(
ValueError
,
self
.
module
.
dump
,
123
,
f
)
self
.
assertRaises
(
ValueError
,
self
.
module
.
dump
,
123
,
f
)
...
@@ -945,7 +945,7 @@ class AbstractPickleModuleTests(unittest.TestCase):
...
@@ -945,7 +945,7 @@ class AbstractPickleModuleTests(unittest.TestCase):
def
test_load_closed_file
(
self
):
def
test_load_closed_file
(
self
):
import
os
import
os
f
=
open
(
TESTFN
,
"w"
)
f
=
open
(
TESTFN
,
"w
b
"
)
try
:
try
:
f
.
close
()
f
.
close
()
self
.
assertRaises
(
ValueError
,
self
.
module
.
dump
,
123
,
f
)
self
.
assertRaises
(
ValueError
,
self
.
module
.
dump
,
123
,
f
)
...
...
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