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
02cd3658
Kaydet (Commit)
02cd3658
authored
May 06, 2003
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
detect old version 2 hash files and return "bsddb185" as the appropriate
module to load them
üst
6d9f45bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
whichdb.py
Lib/whichdb.py
+4
-3
No files found.
Lib/whichdb.py
Dosyayı görüntüle @
02cd3658
...
@@ -86,11 +86,12 @@ def whichdb(filename):
...
@@ -86,11 +86,12 @@ def whichdb(filename):
if
magic
==
0x13579ace
:
if
magic
==
0x13579ace
:
return
"gdbm"
return
"gdbm"
# Check for
BSD hash
# Check for
old Berkeley db hash file format v2
if
magic
in
(
0x00061561
,
0x61150600
):
if
magic
in
(
0x00061561
,
0x61150600
):
return
"
dbhash
"
return
"
bsddb185
"
# BSD hash v2 has a 12-byte NULL pad in front of the file type
# Later versions of Berkeley db hash file have a 12-byte pad in
# front of the file type
try
:
try
:
(
magic
,)
=
struct
.
unpack
(
"=l"
,
s16
[
-
4
:])
(
magic
,)
=
struct
.
unpack
(
"=l"
,
s16
[
-
4
:])
except
struct
.
error
:
except
struct
.
error
:
...
...
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