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 rhettinger
Recipients docs@python, gvanrossum, levkivskyi, rhettinger, steven.daprano
Date 2019-08-10.16:50:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1565455842.44.0.387482447558.issue37809@roundup.psfhosted.org>
In-reply-to
Content
Further notes for posterity:

* Anything written using collections.NamedTuple would instantly lose its backwards compatibility.  

* The casing of NamedTuple is more in line with the typing module:  List, Deque, NamedTuple and doesn't fit well with the deque, namedtuple, and ChainMap in the collections module. 

* Nothing in the collections module currently requires typing, but NamedTuple can only be used with typing.  

* We really don't want to increase import times for collections. This proposal would defeat the entire purpose of having moved _collections_abc to a separate module outside of the collections package.
History
Date User Action Args
2019-08-10 16:50:42rhettingersetrecipients: + rhettinger, gvanrossum, steven.daprano, docs@python, levkivskyi
2019-08-10 16:50:42rhettingersetmessageid: <1565455842.44.0.387482447558.issue37809@roundup.psfhosted.org>
2019-08-10 16:50:42rhettingerlinkissue37809 messages
2019-08-10 16:50:42rhettingercreate