classification
Title: Move reduce() to functools
Type: Stage:
Components: Interpreter Core Versions: Python 3.0
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: gvanrossum Nosy List: collinwinter, gvanrossum (2)
Priority: normal Keywords: patch

Created on 2006-06-28 09:42 by collinwinter, last changed 2008-01-06 22:29 by admin.

Files
File name Uploaded Description Edit Remove
py3k-move_reduce.patch collinwinter, 2006-06-28 09:42 Move reduce() to functools, against r47141
Messages (2)
msg50553 - (view) Author: Collin Winter (collinwinter) Date: 2006-06-28 09:42
As a follow-up to patch #1513249, this patch moves
reduce() from builtins and into functools. All related
documentation and tests have been changed over as well.

The patch is against r47141.
msg50554 - (view) Author: Guido van Rossum (gvanrossum) Date: 2006-08-26 20:50
Logged In: YES 
user_id=6380

Well, the removal was already done, and the code that was
using reduce() was rewritten to avoid it rather than
importing it from functools, but the rest of this patch was
applied.

Committed revision 51626.
History
Date User Action Args
2008-01-06 22:29:46adminsetkeywords: - py3k
versions: + Python 3.0
2006-06-28 09:42:32collinwintercreate