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 Jason.Baker
Recipients Jason.Baker
Date 2011-01-25.22:32:21
SpamBayes Score 0.0001401812
Marked as misclassified No
Message-id <1295994742.19.0.341586360497.issue11011@psf.upfronthosting.co.za>
In-reply-to
Content
I've created a patch that adds some common functional programming tools to functools.  I've made the patch to work against Python 3.2, but that may be a bit aggressive.  If so, then I can adapt it to work with 3.3.

I also wouldn't be opposed to writing some of these in C if there's a performance need.

The functions I added are:

* flip - flip the first two arguments of a function
* const - return a function that always returns the same thing
* compose - compose multiple functions together
* identity - returns what is passed in to it
* trampoline - calls a function and then calls any returned functions.
History
Date User Action Args
2011-01-25 22:32:22Jason.Bakersetrecipients: + Jason.Baker
2011-01-25 22:32:22Jason.Bakersetmessageid: <1295994742.19.0.341586360497.issue11011@psf.upfronthosting.co.za>
2011-01-25 22:32:21Jason.Bakerlinkissue11011 messages
2011-01-25 22:32:21Jason.Bakercreate