[Python-bugs-list] [ python-Feature Requests-662923 ] iterator for dbm keys

SourceForge.net noreply@sourceforge.net
Sun, 05 Jan 2003 18:34:29 -0800


Feature Requests item #662923, was opened at 2003-01-06 02:34
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=355470&aid=662923&group_id=5470

Category: Python Library
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: paul rubin (phr)
Assigned to: Nobody/Anonymous (nobody)
Summary: iterator for dbm keys

Initial Comment:
if d is a dbm (gdbm, bsddb, shelve, etc.) object, then
"for k in d"
should iterate through the keys of d, like you can do
with dicts.  Alternatively, add a new operation,
d.xkeys(), which returns an iterator that steps through
all the keys in d.  d.keys() is often inappropriate
since dbm databases can be extremely large and d.keys()
tries to read all the keys into memory at once.


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=355470&aid=662923&group_id=5470