Issue 1513870: Move reduce() to functools (original) (raw)

Issue1513870

Created on 2006-06-28 09:42 by collinwinter, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
py3k-move_reduce.patch collinwinter,2006-06-28 09:42 Move reduce() to functools, against r47141
Messages (2)
msg50553 - (view) Author: Collin Winter (collinwinter) * (Python committer) 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) * (Python committer) 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
2022-04-11 14:56:18 admin set github: 43568
2008-01-06 22:29:46 admin set keywords: - py3kversions: + Python 3.0
2006-06-28 09:42:32 collinwinter create