Sandro Tosi <sandro.t...@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 <rep...@bugs.python.org>
<http://bugs.python.org/issue10609>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to