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 nedds
Recipients brett.cannon, collinwinter, nedds, rhettinger
Date 2008-08-18.17:59:25
SpamBayes Score 0.00013185426
Marked as misclassified No
Message-id <1219082366.79.0.519552647148.issue2876@psf.upfronthosting.co.za>
In-reply-to
Content
What's the current status of this? If nobody is working on it, I would
be willing to give it a shot. Can somebody just confirm that I have a
correct understanding of the problem.
UserDict.UserDict needs a deprecation warning, UserDict.IterableUserDict
becomes collections.UserDict, and UserDict.Mixin becomes
collections.MutableMapping. Then for keys(), items(), and values(), I
want to replace something like d.keys() to list(d.keys()). 
One added question: based on what I gathered from PEP 3106, this last
part is only needed in a situation such as a = d.keys(), but not a
situation like for key in keys:, so because in the later case wrapping
the call to keys() in list() would presumably be suboptimal, is this
something I should try and avoid? I'm not sure exactly how it could be
done, but I have some idea of how it to do it.
History
Date User Action Args
2008-08-18 17:59:27neddssetrecipients: + nedds, brett.cannon, collinwinter, rhettinger
2008-08-18 17:59:26neddssetmessageid: <1219082366.79.0.519552647148.issue2876@psf.upfronthosting.co.za>
2008-08-18 17:59:26neddslinkissue2876 messages
2008-08-18 17:59:25neddscreate