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 schuppenies
Recipients pitrou, schuppenies
Date 2009-05-11.16:30:42
SpamBayes Score 9.762602e-05
Marked as misclassified No
Message-id <1242059445.97.0.573237216982.issue5964@psf.upfronthosting.co.za>
In-reply-to
Content
Sounds right to me. Here is another patch plus tests.

Going through the other tests, I adapted two more tests to actually test
WeakSet. Also, I found the following one and think it is a copy&paste
from test_set which is not useful for test_weakset. Should it be removed
(as currently done in the patch)?

def test_set_literal(self):
    s = set([1,2,3])
    t = {1,2,3}
    self.assertEqual(s, t)
History
Date User Action Args
2009-05-11 16:30:46schuppeniessetrecipients: + schuppenies, pitrou
2009-05-11 16:30:45schuppeniessetmessageid: <1242059445.97.0.573237216982.issue5964@psf.upfronthosting.co.za>
2009-05-11 16:30:44schuppenieslinkissue5964 messages
2009-05-11 16:30:44schuppeniescreate