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
a710d6e2
Kaydet (Commit)
a710d6e2
authored
Şub 07, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added test case for accessing gsbm database by key after it's closed;
it should raise gdbm.error.
üst
ef6ceb62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
test_gdbm.py
Lib/test/test_gdbm.py
+7
-1
No files found.
Lib/test/test_gdbm.py
Dosyayı görüntüle @
a710d6e2
...
...
@@ -5,7 +5,7 @@
import
gdbm
from
gdbm
import
error
from
test_support
import
verbose
from
test_support
import
verbose
,
TestFailed
filename
=
'/tmp/delete_me'
...
...
@@ -18,6 +18,12 @@ if verbose:
g
.
has_key
(
'a'
)
g
.
close
()
try
:
g
[
'a'
]
except
error
:
pass
else
:
raise
TestFailed
,
"expected gdbm.error accessing closed database"
g
=
gdbm
.
open
(
filename
,
'r'
)
g
.
close
()
g
=
gdbm
.
open
(
filename
,
'rw'
)
...
...
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