summaryrefslogtreecommitdiff
path: root/Lib/functools.py
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-36492: Fix passing special keyword arguments to some functions. (GH...Serhiy Storchaka2019-04-011-1/+14
* Consistently move the misses update to just before the user function call (GH...Miss Islington (bot)2019-01-311-3/+3
* bpo-35780: Fix errors in lru_cache() C code (GH-11623) (GH-11682)Miss Islington (bot)2019-01-261-4/+7
* bpo-33967: Fix singledispatch raised IndexError when no args (GH-8184)Miss Islington (bot)2018-07-101-0/+5
* bpo-32227: functools.singledispatch supports registering via type annotations...Łukasz Langa2017-12-111-1/+17
* bpo-31581: Reduce the number of imports for functools (GH-3757)INADA Naoki2017-09-301-5/+8
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-7/+1
* Conceptually, roots is a set. Also searching it as a set is a tiny bit faste...Raymond Hettinger2017-09-051-1/+1
* Add comment to explain the implications of not sorting keywords (#3331)Raymond Hettinger2017-09-041-0/+4
* mergeRaymond Hettinger2017-01-081-4/+3
|\
| * Issue #29203: functools.lru_cache() now respects PEP 468Raymond Hettinger2017-01-081-4/+3
* | Issue #28991: Address comment that the __len__ call looked unattractiveRaymond Hettinger2016-12-161-3/+4
|/
* mergeRaymond Hettinger2016-12-161-2/+4
|\
| * Issue #28991: Fix obscure reentrancy bug in functools.lru_cache().Raymond Hettinger2016-12-161-2/+4
* | Issue #27137: align Python & C implementations of functools.partialNick Coghlan2016-09-101-17/+75
|/
* Removed redundant call of update_wrapper().Serhiy Storchaka2015-10-241-1/+1
* Issue #23572: Fixed functools.singledispatch on classes with falsy metaclasses.Yury Selivanov2015-08-181-1/+1
* Backed out changeset: b0a0b9b59012Serhiy Storchaka2015-05-241-99/+108
* Backed out changeset 57776eee74f2Larry Hastings2015-05-231-108/+99
* Issue #14373: Added C implementation of functools.lru_cache(). Based onSerhiy Storchaka2015-05-231-99/+108
* Issue #16261: Converted some bare except statements to except statementsSerhiy Storchaka2015-05-201-1/+1
* Reduce the overhead in functools.total_ordering by localizing NotImplemented.Raymond Hettinger2015-05-121-12/+12
* Issue #7830: Flatten nested functools.partial.Alexander Belopolsky2015-03-011-0/+8
* Issue #23326: Removed __ne__ implementations. Since fixing default __ne__Serhiy Storchaka2015-01-311-2/+0
* No need to rebuild a constant dictionary on every call. Move convert mapping...Raymond Hettinger2015-01-131-16/+17
* Minor speed-up. Use local variable instead of a global lookup.Raymond Hettinger2015-01-061-10/+10
* mergeRaymond Hettinger2015-01-051-76/+81
|\
| * Issue #23132: Mitigate regression in speed and clarity in functools.total_ord...Raymond Hettinger2015-01-051-64/+78
* | Issue #23132: Improve performance and introspection support of comparisonSerhiy Storchaka2015-01-011-41/+50
* | mergeRaymond Hettinger2014-08-121-0/+6
|\ \ | |/
| * Issue 22184: Early detection and reporting of missing lru_cache parametersRaymond Hettinger2014-08-121-0/+6
* | Issue #22032: __qualname__ instead of __name__ is now always used to formatSerhiy Storchaka2014-07-221-1/+1
|/
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+1
* inspect.signature: Add support for 'functools.partialmethod' #20223Yury Selivanov2014-01-271-0/+1
* Fix functools.partialmethod docs and __all__Nick Coghlan2013-11-041-1/+1
* Issue #4331: Added functools.partialmethodNick Coghlan2013-11-031-2/+76
* Close #10042: functools.total_ordering now handles NotImplementedNick Coghlan2013-10-021-12/+82
* Close issue 17482: don't overwrite __wrapped__Nick Coghlan2013-07-151-1/+3
* Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-3/+3
* Issue #18244: Adopt C3-based linearization in functools.singledispatch for im...Łukasz Langa2013-07-011-43/+135
* Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-3/+3
* Add reference implementation for PEP 443Łukasz Langa2013-06-051-4/+124
* mergeRaymond Hettinger2013-03-081-2/+2
|\
| * Sync-up with 3.4 to make maintenance easier.Raymond Hettinger2013-03-081-9/+7
* | mergeRaymond Hettinger2013-03-081-12/+35
|\ \ | |/
| * Improve comments and variable names.Raymond Hettinger2013-03-081-14/+37
* | MergeRaymond Hettinger2013-03-041-1/+1
|\ \ | |/
| * Another nit.Raymond Hettinger2013-03-041-1/+1
* | mergeRaymond Hettinger2013-03-041-7/+11
|\ \ | |/
| * Fix other re-entrancy nits for the lru_cache.Raymond Hettinger2013-03-041-7/+11