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 belopolsky
Recipients belopolsky, gvanrossum
Date 2008-02-25.15:52:53
SpamBayes Score 0.013644259
Marked as misclassified No
Message-id <1203954776.39.0.0519204149612.issue2186@psf.upfronthosting.co.za>
In-reply-to
Content
Attached patch removes support for None from filter and 
itertools.ifilter.  My objections for removing that from map do not 
apply because bool function can be used instead of None in filter 
achieving similar performance and better clarity.

None support was apparently removed from map in r60206.

Remaining questions:

1. map(None,[]), filter(None,[]) and in fact map(anything,[]) still 
work.  I don't think that needs to be fixed.

2. Should None support be removed from itertools.ifilterfalse? I would 
guess yes, unless it is going away.
History
Date User Action Args
2008-02-25 15:52:56belopolskysetspambayes_score: 0.0136443 -> 0.013644259
recipients: + belopolsky, gvanrossum
2008-02-25 15:52:56belopolskysetspambayes_score: 0.0136443 -> 0.0136443
messageid: <1203954776.39.0.0519204149612.issue2186@psf.upfronthosting.co.za>
2008-02-25 15:52:55belopolskylinkissue2186 messages
2008-02-25 15:52:55belopolskycreate