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 pitrou
Recipients christian.heimes, georg.brandl, pitrou, serhiy.storchaka
Date 2013-10-13.21:00:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381698036.36.0.198236259902.issue19251@psf.upfronthosting.co.za>
In-reply-to
Content
> Sets are sequences.

>>> from collections import abc
>>> issubclass(abc.Set, abc.Sequence)
False
>>> issubclass(abc.Sequence, abc.Set)
False

> Perhaps separated mutable bitset (or bitlist?) type will be more useful.

Then I would prefer a view, using e.g. the buffer API, but without any copies.
History
Date User Action Args
2013-10-13 21:00:36pitrousetrecipients: + pitrou, georg.brandl, christian.heimes, serhiy.storchaka
2013-10-13 21:00:36pitrousetmessageid: <1381698036.36.0.198236259902.issue19251@psf.upfronthosting.co.za>
2013-10-13 21:00:36pitroulinkissue19251 messages
2013-10-13 21:00:36pitroucreate