diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-03 22:59:38 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-03 22:59:38 (GMT) |
commit | 6ba2332f55e1d4dc49470cfc68fcedb3b6d096f8 (patch) | |
tree | 992d78f3d12ec5184f775916e0cb6dbd9fd3e145 /Doc/library/persistence.rst | |
parent | c469d4c3aa0a66579d1927f0e5d9630b3ea4024f (diff) | |
download | cpython-6ba2332f55e1d4dc49470cfc68fcedb3b6d096f8.zip cpython-6ba2332f55e1d4dc49470cfc68fcedb3b6d096f8.tar.gz cpython-6ba2332f55e1d4dc49470cfc68fcedb3b6d096f8.tar.bz2 |
clean up some more bsddb scraps
Diffstat (limited to 'Doc/library/persistence.rst')
-rw-r--r-- | Doc/library/persistence.rst | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Doc/library/persistence.rst b/Doc/library/persistence.rst index 8d9fa3a..b90b2e1 100644 --- a/Doc/library/persistence.rst +++ b/Doc/library/persistence.rst @@ -9,9 +9,7 @@ The modules described in this chapter support storing Python data in a persistent form on disk. The :mod:`pickle` and :mod:`marshal` modules can turn many Python data types into a stream of bytes and then recreate the objects from the bytes. The various DBM-related modules support a family of hash-based file -formats that store a mapping of strings to other strings. The :mod:`bsddb` -module also provides such disk-based string-to-string mappings based on hashing, -and also supports B-Tree and record-based formats. +formats that store a mapping of strings to other strings. The list of modules described in this chapter is: @@ -23,5 +21,4 @@ The list of modules described in this chapter is: shelve.rst marshal.rst dbm.rst - bsddb.rst sqlite3.rst |