summaryrefslogtreecommitdiffstats
path: root/Lib/functools.py
Commit message (Expand)AuthorAgeFilesLines
...
* Minor cleanup: add whitespace, add comments, bring function attribute updates...Raymond Hettinger2012-03-301-5/+4
* Fix whitespaceRaymond Hettinger2012-03-171-1/+1
* Low overhead path for maxsize==0Raymond Hettinger2012-03-171-2/+13
* Section-off the source for better readability.Raymond Hettinger2012-03-171-0/+23
* Minor beautification.Raymond Hettinger2012-03-171-1/+1
* Root variable is not changed.Raymond Hettinger2012-03-171-1/+1
* Fix whitespaceRaymond Hettinger2012-03-171-1/+1
* Unique sentinel value for cache.get()Raymond Hettinger2012-03-171-2/+2
* Refactor calculation of the cache key. Minor code cleanups.Raymond Hettinger2012-03-161-25/+21
* merge headsBenjamin Peterson2012-03-161-2/+1
|\
| * Minor code cleanup.Raymond Hettinger2012-03-161-2/+1
* | clear the root with the cacheBenjamin Peterson2012-03-161-1/+3
|/
* Eliminate duplicate link lookup. Minor cleanup.Raymond Hettinger2012-03-161-2/+2
* Improve the memory utilization (and speed) of functools.lru_cache().Raymond Hettinger2012-03-161-21/+32
* Issue #13544: Add __qualname__ to functools.WRAPPER_ASSIGNMENTS.Meador Inge2011-12-121-1/+2
* Issue 13227: Option to make the lru_cache() type specific (suggested by Andre...Raymond Hettinger2011-10-201-4/+18
* MergeRaymond Hettinger2011-10-161-15/+19
|\
| * Issue 13177: Make tracebacks more readable by avoiding chained exceptions in ...Raymond Hettinger2011-10-161-15/+19
| * Sync-up minor code edits with the default branch.Raymond Hettinger2011-05-051-4/+4
* | Fix __hash__ in functools.cmp_to_key() to work with collections.Hashable.Raymond Hettinger2011-05-031-2/+1
|\ \ | |/
| * Fix __hash__ in functools.cmp_to_key() to work with collections.Hashable.Raymond Hettinger2011-05-031-2/+1
* | Issue #11707: Fast C version of functools.cmp_to_key()Raymond Hettinger2011-04-051-1/+6
* | Issue #11628: cmp_to_key should use __slots__.Raymond Hettinger2011-03-221-0/+1
|\ \ | |/
| * Issue #11628: cmp_to_key should use __slots__.Raymond Hettinger2011-03-221-0/+1
* | Minor optimization -- factor a constant expression out of the inner-loop.Raymond Hettinger2011-03-181-3/+3
|/
* Add comment.Raymond Hettinger2011-01-111-1/+1
* Issue #10042: Fixed the total_ordering decorator to handle cross-typeRaymond Hettinger2011-01-081-8/+8
* Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None.Raymond Hettinger2010-12-011-19/+41
* Doc and docstring nits.Raymond Hettinger2010-12-011-2/+2
* Add example, tighten text, and minor clean-ups.Raymond Hettinger2010-11-301-2/+2
* Neaten-up a bit.Raymond Hettinger2010-11-301-7/+6
* Issue 10586: change the new functools.lru_cache implementation to expose the ...Nick Coghlan2010-11-301-7/+18
* Clean-up docstring, comments, and whitespace.Raymond Hettinger2010-11-251-5/+15
* Improve commentRaymond Hettinger2010-09-161-1/+1
* Future proof total_ordering against changes in methods defined on object.Raymond Hettinger2010-09-141-1/+1
* Revert r84700 which had an unfortunate performance cost.Raymond Hettinger2010-09-111-2/+2
* Separate positional arguments from localized globals.Raymond Hettinger2010-09-111-2/+2
* add reduce and partial to __all__Benjamin Peterson2010-09-101-1/+1
* Add method to OrderedDict for repositioning keys to the ends.Raymond Hettinger2010-09-061-1/+1
* Clean-up functools.total_ordering().Raymond Hettinger2010-09-051-4/+2
* Adopt more descriptive attribute names as suggested on python-dev.Raymond Hettinger2010-09-041-6/+6
* Readability nit.Raymond Hettinger2010-09-021-1/+2
* Better method name. Tighten inner-loop with bound methods.Raymond Hettinger2010-09-021-2/+3
* Speed-up cache updatesRaymond Hettinger2010-09-021-2/+1
* remove parensBenjamin Peterson2010-08-241-1/+1
* run total_ordering() tests, and fix the function (default comparisons shouldn...Benjamin Peterson2010-08-231-1/+4
* Document and test the resolution of issue 3445 (tolerate missing attributes i...Nick Coghlan2010-08-171-2/+7
* Fix __all__.Raymond Hettinger2010-08-151-1/+1
* Remove unused importsRaymond Hettinger2010-08-151-3/+1
* Remove the lfu_cache. Add more tests.Raymond Hettinger2010-08-151-52/+0