summaryrefslogtreecommitdiff
path: root/Modules/functionalmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in functional moduleGeorg Brandl2006-02-211-2/+2
|
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
| | | | Probably should be backported.
* Make functional.partial() more closely match the spec by emulatingRaymond Hettinger2005-03-081-5/+55
| | | | | | | some useful features of regular functions: * Made weak referencable. * Allow attribute access so a user can set __name__, __doc__, etc.
* SF patch #941881: PEP 309 Implementation (Partial Function Application).Raymond Hettinger2005-02-281-0/+225
Combined efforts of many including Peter Harris, Hye-Shik Chang, Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger.