[issue10609] dbm documentation example doesn't work (iteritems())

Sandro Tosi report at bugs.python.org
Fri Dec 3 07:07:17 CET 2010


Sandro Tosi <sandro.tosi at gmail.com> added the comment:

Hi Eric,
on and up-to-date py3k I got this:


>>> for k, v in db.items():
...     print(k, '\t', v)
... 
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: '_dbm.dbm' object has no attribute 'items'
>>> 'items' in dir(db)
False

(I tried to use items() before proposing that code ;)).

----------

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


More information about the Python-bugs-list mailing list