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 eric.smith
Recipients James.Lu, eric.smith
Date 2013-07-23.16:39:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374597565.43.0.890881087466.issue18537@psf.upfronthosting.co.za>
In-reply-to
Content
If that's your concern, you can use operator.not_.

>>> import operator
>>> filter(operator.not_, [False, True, False, False, True])
[False, False, False]
History
Date User Action Args
2013-07-23 16:39:25eric.smithsetrecipients: + eric.smith, James.Lu
2013-07-23 16:39:25eric.smithsetmessageid: <1374597565.43.0.890881087466.issue18537@psf.upfronthosting.co.za>
2013-07-23 16:39:25eric.smithlinkissue18537 messages
2013-07-23 16:39:25eric.smithcreate