This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sandro.tosi
Recipients sandro.tosi
Date 2010-12-02.20:52:01
SpamBayes Score 0.0003607526
Marked as misclassified No
Message-id <1291323126.35.0.13869122255.issue10609@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2010-12-02 20:52:06sandro.tosisetrecipients: + sandro.tosi
2010-12-02 20:52:06sandro.tosisetmessageid: <1291323126.35.0.13869122255.issue10609@psf.upfronthosting.co.za>
2010-12-02 20:52:01sandro.tosilinkissue10609 messages
2010-12-02 20:52:01sandro.tosicreate