[issue37670] Description of UserDict is misleading

2019-07-24 Thread Raymond Hettinger
Raymond Hettinger added the comment: The term "mapping" is in lowercase and refers to the generic concept of a mapping as defined in the glossary. This is distinct from the capital letter classes "Mapping" and "MutableMapping" as provided in the collections.abc module. It is the former

[issue37670] Description of UserDict is misleading

2019-07-24 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37670] Description of UserDict is misleading

2019-07-24 Thread Caleb Donovick
New submission from Caleb Donovick : The documentation for collections.UserDict states "In addition to supporting the methods and operations of mappings, UserDict instances provide the following attribute: ..." This however is misleading as it supports the operations of mutable mappings.