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 stutzbach
Recipients stutzbach
Date 2010-05-17.19:01:17
SpamBayes Score 0.0017176103
Marked as misclassified No
Message-id <1274122880.23.0.0809351792043.issue8743@psf.upfronthosting.co.za>
In-reply-to
Content
I should add:

I discovered the inconsistency while working on my sortedset class, which provides the same interface as set() but is also indexable like a list (e.g., S[0] always returns the minimum element, S[-1] returns the maximum element, etc.).

sortedset derives from collections.MutableSet, but it's challenging to precisely emulate set() when collections.MutableSet and set() don't work the same way. ;-)
History
Date User Action Args
2010-05-17 19:01:21stutzbachsetrecipients: + stutzbach
2010-05-17 19:01:20stutzbachsetmessageid: <1274122880.23.0.0809351792043.issue8743@psf.upfronthosting.co.za>
2010-05-17 19:01:17stutzbachlinkissue8743 messages
2010-05-17 19:01:17stutzbachcreate