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 jrosiek
Recipients jrosiek
Date 2009-01-12.11:23:59
SpamBayes Score 0.11706027
Marked as misclassified No
Message-id <1231759440.37.0.125734005136.issue4922@psf.upfronthosting.co.za>
In-reply-to
Content
Methods set.add and set.discard should return boolean values according
to collections.MutableSet but they are not.

>>> print set().add(5)
None
>>> print set().discard(5)
None
History
Date User Action Args
2009-01-12 11:24:00jrosieksetrecipients: + jrosiek
2009-01-12 11:24:00jrosieksetmessageid: <1231759440.37.0.125734005136.issue4922@psf.upfronthosting.co.za>
2009-01-12 11:23:59jrosieklinkissue4922 messages
2009-01-12 11:23:59jrosiekcreate