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 serhiy.storchaka
Recipients Rosuav, barry, petri.lehtinen, r.david.murray, serhiy.storchaka
Date 2014-02-22.19:05:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1393095945.51.0.318171342647.issue20729@psf.upfronthosting.co.za>
In-reply-to
Content
Actually it should be iteritems(). This is meant to support Mailbox, which has both iteritems() and items() methods. iteritems() returns an iterator and items() returns a list. Looks as changeset f340cb045bf9 was incorrectly applied to mailbox. Here is a patch which partially reverts changeset f340cb045bf9 for the mailbox module and fixes tests in 3.x.

Perhaps we should change items() to return an iterator in Python 4.0.
History
Date User Action Args
2014-02-22 19:05:45serhiy.storchakasetrecipients: + serhiy.storchaka, barry, r.david.murray, petri.lehtinen, Rosuav
2014-02-22 19:05:45serhiy.storchakasetmessageid: <1393095945.51.0.318171342647.issue20729@psf.upfronthosting.co.za>
2014-02-22 19:05:45serhiy.storchakalinkissue20729 messages
2014-02-22 19:05:45serhiy.storchakacreate