summaryrefslogtreecommitdiff
path: root/Lib/functools.py
Commit message (Expand)AuthorAgeFilesLines
* gh-87634: remove locking from functools.cached_property (GH-101890)Carl Meyer2023-02-221-18/+9
* gh-89828: Do not relay the __class__ attribute in GenericAlias (#93754)Serhiy Storchaka2022-06-181-3/+2
* This localization technique is no longer cost effective. (GH-30818)Raymond Hettinger2022-01-221-12/+12
* bpo-46032: Check types in singledispatch's register() at declaration time (GH...Serhiy Storchaka2021-12-251-5/+16
* bpo-46014: Add ability to use typing.Union with singledispatch (GH-30017)Yurii Karabas2021-12-111-7/+28
* bpo-44605: Teach @total_ordering() to work with metaclasses (GH-27633)Raymond Hettinger2021-08-061-12/+12
* Update URLs in comments and metadata to use HTTPS (GH-27458)Noah Kantrowitz2021-07-301-2/+2
* bpo-31082: Use "iterable" in the docstring for functools.reduce() (GH-20796)Zackery Spytz2020-06-281-7/+8
* bpo-17005: Move topological sort functionality to its own module (GH-20558)Pablo Galindo2020-06-011-245/+0
* bpo-40571: Make lru_cache(maxsize=None) more discoverable (GH-20019)Raymond Hettinger2020-05-111-1/+10
* bpo-39481: Make functools.cached_property, partial, partialmethod generic (#1...Ethan Smith2020-04-131-0/+6
* Updates functools.py with consistent quotes (GH-18825)Nikita Sobolev2020-03-101-1/+1
* bpo-35712: Make using NotImplemented in a boolean context issue a deprecation...MojoVampire2020-03-031-0/+4
* bpo-39815: add cached_property to all (GH-18726)Hakan Çelik2020-03-011-1/+2
* bpo-17005: Add a class to perform topological sorting to the standard library...Pablo Galindo2020-01-231-2/+247
* bpo-38565: add new cache_parameters method for lru_cache (GH-16916)Manjusaka2019-11-111-0/+2
* Doc: Fix Wikipedia link for functools.lru_cache (GH-16183)amist2019-09-161-1/+1
* bpo-36743: __get__ is sometimes called without the owner argument (#12992)Raymond Hettinger2019-08-291-3/+3
* [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)Serhiy Storchaka2019-06-051-18/+1
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-011-13/+3
* bpo-36772 Allow lru_cache to be used as decorator without making a function c...Raymond Hettinger2019-05-261-4/+8
* bpo-35252: Remove FIXME from test_functools (GH-10551)Lysandros Nikolaou2019-05-191-3/+5
* bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)Serhiy Storchaka2019-05-061-0/+1
* bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-011-1/+17
* bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553)Serhiy Storchaka2019-03-271-14/+7
* Consistently move the misses update to just before the user function call (GH...Raymond Hettinger2019-01-311-3/+3
* bpo-35780: Fix errors in lru_cache() C code (GH-11623)Raymond Hettinger2019-01-261-4/+7
* bpo-34890: Make iscoroutinefunction, isgeneratorfunction and isasyncgenfuncti...Pablo Galindo2018-10-261-0/+6
* bpo-32321: Add pure Python fallback for functools.reduce (GH-8548)madman-bob2018-10-251-4/+39
* bpo-21145: Add cached_property decorator in functools (#6982)Carl Meyer2018-08-281-0/+55
* bpo-33967: Fix singledispatch raised IndexError when no args (GH-8184)Dong-hee Na2018-07-101-0/+5
* bpo-32380: Create functools.singledispatchmethod (#6306)Ethan Smith2018-05-261-1/+38
* 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