[issue6045] Fix dbm interfaces

Georg Brandl report at bugs.python.org
Sun May 17 10:46:29 CEST 2009


New submission from Georg Brandl <georg at python.org>:

All the dbm.* modules currently have different interfaces, and different
levels of supporting the Python3-style dictionary interface -- while the
docs claim they all have (most of) the dict interface.

For example, both dbm.gnu and dbm.ndbm only have keys() methods, and
they return a list.  Etc. for other dict-style methods.

So, either we remove the claim that they have a dict-style interface
beyond __*item__() and keys(), or we do something about it.

----------
components: Library (Lib)
messages: 87968
nosy: georg.brandl
priority: release blocker
severity: normal
stage: needs patch
status: open
title: Fix dbm interfaces
type: behavior
versions: Python 3.1

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue6045>
_______________________________________


More information about the Python-bugs-list mailing list