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 veky
Recipients gvanrossum, josh.r, serhiy.storchaka, steven.daprano, terry.reedy, veky, xtreak
Date 2019-08-09.17:52:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1565373170.06.0.233462496903.issue35712@roundup.psfhosted.org>
In-reply-to
Content
Another reason why current behavior is confusing: what do you think

    filter(2 .__eq__, 'text')

should yield? :-o

(Yes, I know this isn't the right way to do it, but

    (element for element in 'text' if element == 2)

is twice longer.:)
History
Date User Action Args
2019-08-09 17:52:50vekysetrecipients: + veky, gvanrossum, terry.reedy, steven.daprano, serhiy.storchaka, josh.r, xtreak
2019-08-09 17:52:50vekysetmessageid: <1565373170.06.0.233462496903.issue35712@roundup.psfhosted.org>
2019-08-09 17:52:50vekylinkissue35712 messages
2019-08-09 17:52:49vekycreate