Jelle Zijlstra <jelle.zijls...@gmail.com> added the comment:

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'>

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue46399>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to