Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
abad1cc6
Commit
abad1cc6
authored
Aug 11, 1995
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed DbShelf->DbfilenameShelf;added BsdDbShelf (David Ely)
parent
e03a86c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
5 deletions
+46
-5
Lib/shelve.py
Lib/shelve.py
+46
-5
No files found.
Lib/shelve.py
View file @
abad1cc6
...
...
@@ -73,23 +73,64 @@ class Shelf:
self
.
close
()
class
DbShelf
(
Shelf
):
class
BsdDbShelf
(
Shelf
):
"""Shelf implementation using the "BSD" db interface.
The actual database is opened using one of thethe "bsddb" modules
"open" routines (i.e. bsddb.hashopen, bsddb.btopen or bsddb.rnopen.)
This class is initialized with the the database object
returned from one of the bsddb open functions.
See the module's __doc__ string for an overview of the interface.
"""
def
__init__
(
self
,
dict
):
Shelf
.
__init__
(
self
,
dict
)
def
set_location
(
self
,
key
):
(
key
,
value
)
=
self
.
dict
.
set_location
(
key
)
f
=
StringIO
.
StringIO
(
value
)
return
(
key
,
pickle
.
Unpickler
(
f
).
load
())
def
next
(
self
):
(
key
,
value
)
=
self
.
dict
.
next
()
f
=
StringIO
.
StringIO
(
value
)
return
(
key
,
pickle
.
Unpickler
(
f
).
load
())
def
previous
(
self
):
(
key
,
value
)
=
self
.
dict
.
previous
()
f
=
StringIO
.
StringIO
(
value
)
return
(
key
,
pickle
.
Unpickler
(
f
).
load
())
def
first
(
self
):
(
key
,
value
)
=
self
.
dict
.
first
()
f
=
StringIO
.
StringIO
(
value
)
return
(
key
,
pickle
.
Unpickler
(
f
).
load
())
def
last
(
self
):
(
key
,
value
)
=
self
.
dict
.
last
()
f
=
StringIO
.
StringIO
(
value
)
return
(
key
,
pickle
.
Unpickler
(
f
).
load
())
class
DbfilenameShelf
(
Shelf
):
"""Shelf implementation using the "anydbm" generic dbm interface.
This is initialized with the filename for the dbm database.
See the module's __doc__ string for an overview of the interface.
"""
def
__init__
(
self
,
filename
):
def
__init__
(
self
,
filename
,
flag
=
'c'
):
import
anydbm
Shelf
.
__init__
(
self
,
anydbm
.
open
(
filename
))
Shelf
.
__init__
(
self
,
anydbm
.
open
(
filename
,
flag
))
def
open
(
filename
):
def
open
(
filename
,
flag
=
'c'
):
"""Open a persistent dictionary for reading and writing.
Argument is the filename for the dbm database.
See the module's __doc__ string for an overview of the interface.
"""
return
Db
Shelf
(
filename
)
return
Db
filenameShelf
(
filename
,
flag
)
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