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
914c938c
Kaydet (Commit)
914c938c
authored
Haz 06, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use cPickle and cStringIO when available.
üst
f668d17e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
20 deletions
+30
-20
shelve.py
Lib/shelve.py
+30
-20
No files found.
Lib/shelve.py
Dosyayı görüntüle @
914c938c
...
@@ -28,8 +28,17 @@ Dependent on the implementation, closing a persistent dictionary may
...
@@ -28,8 +28,17 @@ Dependent on the implementation, closing a persistent dictionary may
or may not be necessary to flush changes to disk.
or may not be necessary to flush changes to disk.
"""
"""
import
pickle
# Try using cPickle and cStringIO if available.
import
StringIO
try
:
from
cPickle
import
Pickler
,
Unpickler
except
ImportError
:
from
pickle
import
Pickler
,
Unpickler
try
:
from
cStringIO
import
StringIO
except
ImportError
:
from
StringIO
import
StringIO
class
Shelf
:
class
Shelf
:
...
@@ -52,12 +61,12 @@ class Shelf:
...
@@ -52,12 +61,12 @@ class Shelf:
return
self
.
dict
.
has_key
(
key
)
return
self
.
dict
.
has_key
(
key
)
def
__getitem__
(
self
,
key
):
def
__getitem__
(
self
,
key
):
f
=
StringIO
.
StringIO
(
self
.
dict
[
key
])
f
=
StringIO
(
self
.
dict
[
key
])
return
pickle
.
Unpickler
(
f
)
.
load
()
return
Unpickler
(
f
)
.
load
()
def
__setitem__
(
self
,
key
,
value
):
def
__setitem__
(
self
,
key
,
value
):
f
=
StringIO
.
StringIO
()
f
=
StringIO
()
p
=
pickle
.
Pickler
(
f
)
p
=
Pickler
(
f
)
p
.
dump
(
value
)
p
.
dump
(
value
)
self
.
dict
[
key
]
=
f
.
getvalue
()
self
.
dict
[
key
]
=
f
.
getvalue
()
...
@@ -80,11 +89,12 @@ class Shelf:
...
@@ -80,11 +89,12 @@ class Shelf:
class
BsdDbShelf
(
Shelf
):
class
BsdDbShelf
(
Shelf
):
"""Shelf implementation using the "BSD" db interface.
"""Shelf implementation using the "BSD" db interface.
Th
e actual database is opened using one of thethe "bsddb" modules
Th
is adds methods first(), next(), previous(), last() and
"open" routines (i.e. bsddb.hashopen, bsddb.btopen or bsddb.rnopen.)
set_location() that have no counterpart in [g]dbm databases.
This class is initialized with the the database object
The actual database must be opened using one of the "bsddb"
returned from one of the bsddb open functions.
modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or
bsddb.rnopen) and passed to the constructor.
See the module's __doc__ string for an overview of the interface.
See the module's __doc__ string for an overview of the interface.
"""
"""
...
@@ -94,28 +104,28 @@ class BsdDbShelf(Shelf):
...
@@ -94,28 +104,28 @@ class BsdDbShelf(Shelf):
def
set_location
(
self
,
key
):
def
set_location
(
self
,
key
):
(
key
,
value
)
=
self
.
dict
.
set_location
(
key
)
(
key
,
value
)
=
self
.
dict
.
set_location
(
key
)
f
=
StringIO
.
StringIO
(
value
)
f
=
StringIO
(
value
)
return
(
key
,
pickle
.
Unpickler
(
f
)
.
load
())
return
(
key
,
Unpickler
(
f
)
.
load
())
def
next
(
self
):
def
next
(
self
):
(
key
,
value
)
=
self
.
dict
.
next
()
(
key
,
value
)
=
self
.
dict
.
next
()
f
=
StringIO
.
StringIO
(
value
)
f
=
StringIO
(
value
)
return
(
key
,
pickle
.
Unpickler
(
f
)
.
load
())
return
(
key
,
Unpickler
(
f
)
.
load
())
def
previous
(
self
):
def
previous
(
self
):
(
key
,
value
)
=
self
.
dict
.
previous
()
(
key
,
value
)
=
self
.
dict
.
previous
()
f
=
StringIO
.
StringIO
(
value
)
f
=
StringIO
(
value
)
return
(
key
,
pickle
.
Unpickler
(
f
)
.
load
())
return
(
key
,
Unpickler
(
f
)
.
load
())
def
first
(
self
):
def
first
(
self
):
(
key
,
value
)
=
self
.
dict
.
first
()
(
key
,
value
)
=
self
.
dict
.
first
()
f
=
StringIO
.
StringIO
(
value
)
f
=
StringIO
(
value
)
return
(
key
,
pickle
.
Unpickler
(
f
)
.
load
())
return
(
key
,
Unpickler
(
f
)
.
load
())
def
last
(
self
):
def
last
(
self
):
(
key
,
value
)
=
self
.
dict
.
last
()
(
key
,
value
)
=
self
.
dict
.
last
()
f
=
StringIO
.
StringIO
(
value
)
f
=
StringIO
(
value
)
return
(
key
,
pickle
.
Unpickler
(
f
)
.
load
())
return
(
key
,
Unpickler
(
f
)
.
load
())
class
DbfilenameShelf
(
Shelf
):
class
DbfilenameShelf
(
Shelf
):
...
...
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