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 eric.smith, xtreak, Артур Григорьев
Date 2019-07-21.14:55:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1563720921.46.0.79740211758.issue37643@roundup.psfhosted.org>
In-reply-to
Content
Yes, this should be discussed on python-ideas first, so I'm closing it here.

But to be honest with you, there's really no chance this would get accepted. It's just too easy to do it with existing list comprehension syntax, which is much more general purpose.

>>> [v for v in [1, 2, 3, 4, 5] if not v in [2]]
[1, 3, 4, 5]
History
Date User Action Args
2019-07-21 14:55:21eric.smithsetrecipients: + eric.smith, xtreak, Артур Григорьев
2019-07-21 14:55:21eric.smithsetmessageid: <1563720921.46.0.79740211758.issue37643@roundup.psfhosted.org>
2019-07-21 14:55:21eric.smithlinkissue37643 messages
2019-07-21 14:55:21eric.smithcreate