New submission from Sandro Tosi <[email protected]>:
Following http://mail.python.org/pipermail/docs/2010-December/002356.html a
possible solution is:
diff -r 3b07f7bb0289 Doc/library/dbm.rst
--- a/Doc/library/dbm.rst Thu Dec 02 19:29:18 2010 +0100
+++ b/Doc/library/dbm.rst Thu Dec 02 21:51:06 2010 +0100
@@ -88,7 +88,7 @@
# Loop through contents. Other dictionary methods
# such as .keys(), .values() also work.
- for k, v in db.iteritems():
+ for k, v in dict(db).items():
print(k, '\t', v)
# Storing a non-string key or value will raise an exception (most
How much ugly is this? alternatively, we can:
>>> for k in db.keys():
... print(k, '\t', db.get(k))
What would be the best solution? (anyhow the comments above the for loop has to
be changed).
Regards,
Sandro
----------
messages: 123113
nosy: sandro.tosi
priority: normal
severity: normal
status: open
title: dbm documentation example doesn't work (iteritems())
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue10609>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com