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
17fb5079
Kaydet (Commit)
17fb5079
authored
Haz 14, 2003
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Treat empty dat/dir pairs as dumbdbm. Fixes #744687.
üst
8316feb1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
test_whichdb.py
Lib/test/test_whichdb.py
+5
-0
whichdb.py
Lib/whichdb.py
+7
-3
No files found.
Lib/test/test_whichdb.py
Dosyayı görüntüle @
17fb5079
...
...
@@ -45,7 +45,12 @@ for name in anydbm._names:
def
test_whichdb_name
(
self
,
name
=
name
,
mod
=
mod
):
# Check whether whichdb correctly guesses module name
# for databases opened with module mod.
# Try with empty files first
f
=
mod
.
open
(
_fname
,
'c'
)
f
.
close
()
self
.
assertEqual
(
name
,
whichdb
.
whichdb
(
_fname
))
# Now add a key
f
=
mod
.
open
(
_fname
,
'w'
)
f
[
"1"
]
=
"1"
f
.
close
()
self
.
assertEqual
(
name
,
whichdb
.
whichdb
(
_fname
))
...
...
Lib/whichdb.py
Dosyayı görüntüle @
17fb5079
...
...
@@ -50,15 +50,19 @@ def whichdb(filename):
# Check for dumbdbm next -- this has a .dir and and a .dat file
try
:
f
=
open
(
filename
+
os
.
extsep
+
"dat"
,
"rb"
)
f
.
close
()
# First check for presence of files
sizes
=
os
.
stat
(
filename
+
os
.
extsep
+
"dat"
)
.
st_size
,
\
os
.
stat
(
filename
+
os
.
extsep
+
"dir"
)
.
st_size
# dumbdbm files with no keys are empty
if
sizes
==
(
0
,
0
):
return
"dumbdbm"
f
=
open
(
filename
+
os
.
extsep
+
"dir"
,
"rb"
)
try
:
if
f
.
read
(
1
)
in
[
"'"
,
'"'
]:
return
"dumbdbm"
finally
:
f
.
close
()
except
IOError
:
except
(
OSError
,
IOError
)
:
pass
# See if the file exists, return None if not
...
...
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