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 serhiy.storchaka
Recipients Akuli, rhettinger, serhiy.storchaka
Date 2020-07-27.14:38:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1595860732.05.0.184235748253.issue41409@roundup.psfhosted.org>
In-reply-to
Content
>>> issubclass(collections.deque, collections.abc.MutableSequence)
True
>>> sorted(set(dir(collections.abc.MutableSequence)) - set(dir(collections.deque)))
['__abstractmethods__', '__module__', '__slots__', '_abc_impl']

Well, it is a bug.
History
Date User Action Args
2020-07-27 14:38:52serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, Akuli
2020-07-27 14:38:52serhiy.storchakasetmessageid: <1595860732.05.0.184235748253.issue41409@roundup.psfhosted.org>
2020-07-27 14:38:52serhiy.storchakalinkissue41409 messages
2020-07-27 14:38:52serhiy.storchakacreate