summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_functional.py
Commit message (Collapse)AuthorAgeFilesLines
* Whitespace normalization.Tim Peters2005-03-281-1/+1
|
* Test partial() with bound/unbound methods.Raymond Hettinger2005-03-111-1/+7
|
* Make functional.partial() more closely match the spec by emulatingRaymond Hettinger2005-03-081-0/+17
| | | | | | | 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/+154
Combined efforts of many including Peter Harris, Hye-Shik Chang, Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger.