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 gvanrossum
Recipients ethan.furman, gvanrossum, josh.r, rhettinger, serhiy.storchaka, steven.daprano, terry.reedy, veky, xtreak
Date 2020-11-09.18:06:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1604945215.12.0.589925942839.issue35712@roundup.psfhosted.org>
In-reply-to
Content
> list(filter(None.__ne__, L))

I assume you've been recommending this? To me it looks obfuscated. People should just use a comprehension, e.g.

[x for x in L if x is not None]
History
Date User Action Args
2020-11-09 18:06:55gvanrossumsetrecipients: + gvanrossum, rhettinger, terry.reedy, steven.daprano, ethan.furman, serhiy.storchaka, josh.r, veky, xtreak
2020-11-09 18:06:55gvanrossumsetmessageid: <1604945215.12.0.589925942839.issue35712@roundup.psfhosted.org>
2020-11-09 18:06:55gvanrossumlinkissue35712 messages
2020-11-09 18:06:55gvanrossumcreate