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.

classification
Title: map and filter objects shouldn't call themselves itertools.imap and itertools.ifilter objects
Type: behavior Stage:
Components: Interpreter Core Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: belopolsky, gvanrossum, rhettinger
Priority: normal Keywords: easy

Created on 2008-02-25 04:06 by gvanrossum, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg62968 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2008-02-25 04:06
Probably ifilter and imap should go (moving the code over to bltinmodule.c).
msg62988 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2008-02-25 17:33
Can you assign this to Raymond as well? If this is done first, issue2186 
patch will be simpler (at least in the documentation portion).  The same 
question on the fate of ifilterfalse is pertinent here as well.
msg63492 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2008-03-13 00:19
Moved filter to builtins in r61536.
msg63493 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2008-03-13 01:26
Moved map to builtins in r61357.
History
Date User Action Args
2022-04-11 14:56:31adminsetgithub: 46440
2008-03-13 01:26:56rhettingersetstatus: open -> closed
resolution: fixed
messages: + msg63493
2008-03-13 00:19:47rhettingersetmessages: + msg63492
2008-02-25 17:34:11gvanrossumsetassignee: rhettinger
nosy: + rhettinger
2008-02-25 17:33:30belopolskysetnosy: + belopolsky
messages: + msg62988
2008-02-25 04:06:33gvanrossumcreate