From: Raymond Hettinger Date: Sat, 28 Jun 2003 07:08:39 +0000 (+0000) Subject: SF 662923: iterator for dbm keys X-Git-Tag: v2.3c1~296 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2dd1ed69b425d2f2ac8152548c7581aa1f01216d;p=python SF 662923: iterator for dbm keys When shelve and the bsdbm where expanded to a full mapping interface, this module was missed. --- diff --git a/Lib/dumbdbm.py b/Lib/dumbdbm.py index d0e1e31206..2f6bc51dd9 100644 --- a/Lib/dumbdbm.py +++ b/Lib/dumbdbm.py @@ -23,6 +23,7 @@ is read when the database is opened, and some updates rewrite the whole index) import os as _os import __builtin__ +import UserDict _open = __builtin__.open @@ -30,7 +31,7 @@ _BLOCKSIZE = 512 error = IOError # For anydbm -class _Database: +class _Database(UserDict.DictMixin): def __init__(self, file, mode): self._mode = mode