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 JelleZijlstra
Recipients AlexWaygood, Dennis Sweeney, JelleZijlstra, gvanrossum, kj, kumaraditya, rhettinger, serhiy.storchaka, sobolevn
Date 2022-01-19.02:29:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1642559363.69.0.225087036741.issue46399@roundup.psfhosted.org>
In-reply-to
Content
The types of `.keys()`, `.items()`, and `.values()` on `collections.OrderedDict` are distinct from those for dict, and they are also not exposed anywhere. Should we put them in a public, documented place too for consistency?

>>> import collections
>>> od = collections.OrderedDict()
>>> type(od.keys())
<class 'odict_keys'>
History
Date User Action Args
2022-01-19 02:29:23JelleZijlstrasetrecipients: + JelleZijlstra, gvanrossum, rhettinger, serhiy.storchaka, Dennis Sweeney, sobolevn, kj, kumaraditya, AlexWaygood
2022-01-19 02:29:23JelleZijlstrasetmessageid: <1642559363.69.0.225087036741.issue46399@roundup.psfhosted.org>
2022-01-19 02:29:23JelleZijlstralinkissue46399 messages
2022-01-19 02:29:23JelleZijlstracreate