summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_functools.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue 6292: for the moment at least, the test suite passes if runR. David Murray2010-02-231-5/+23
| | | | | | with -OO. Tests requiring docstrings are skipped. Patch by Brian Curtin, thanks to Matias Torchinsky for helping review and improve the patch.
* Fix a redefined test method.Georg Brandl2010-02-071-9/+8
|
* #7092: Silence more py3k warnings. Patch by Florent Xicluna.Ezio Melotti2010-02-031-1/+1
|
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-1/+1
| | | | mistake. ( It may come in for sure tough)
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ↵Senthil Kumaran2010-01-081-1/+1
| | | | Patch by flox
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-9/+9
|
* #5228: add pickle support to functools.partialJack Diederich2009-03-311-1/+14
|
* Copy reduce() to _functools so to have functools.reduce() not raise a warningBrett Cannon2008-08-091-1/+44
| | | | from usage under -3.
* [Bug #1576241] Let functools.wraps work with built-in functionsAndrew M. Kuchling2006-10-271-0/+7
|
* Add functools.update_wrapper() and functools.wraps() as described in PEP 356Nick Coghlan2006-06-081-0/+109
|
* Apply modified version of Collin Winter's patch #1478788Nick Coghlan2006-05-291-0/+177
Renames functional extension module to _functools and adds a Python functools module so that utility functions like update_wrapper can be added easily.