index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
functools.py
Commit message (
Expand
)
Author
Age
*
gh-121027: Make the functools.partial object a method descriptor (GH-121089)
Serhiy Storchaka
2024-07-03
*
gh-121027: Add a future warning in functools.partial.__get__ (#121086)
Serhiy Storchaka
2024-06-27
*
gh-121025: Improve partialmethod.__repr__ (GH-121033)
Bénédikt Tran
2024-06-26
*
GH-100242: bring functools.py partial implementation more in line with C code...
CF Bolz-Tereick
2024-04-17
*
Add 'The Python 2.3 Method Resolution Order' (#116435)
Hugo van Kemenade
2024-04-15
*
gh-72249: Include the module name in the repr of partial object (GH-101910)
Furkan Onder
2024-02-25
*
gh-85294: Handle missing arguments to @singledispatchmethod gracefully (GH-21...
Ammar Askar
2024-02-16
*
bpo-38364: unwrap partialmethods just like we unwrap partials (#16600)
Martijn Pieters
2024-02-15
*
gh-109653: Avoid a top-level import of `types` in `functools` (#109804)
Alex Waygood
2023-09-24
*
gh-102757: fix function signature mismatch for `functools.reduce` between cod...
Xuehai Pan
2023-09-18
*
gh-107995: Fix doctest collection of functools.cached_property objects (#107996)
Tyler Smart
2023-08-18
*
gh-85160: Reduce memory usage of `singledispatchmethod` (#107706)
Alex Waygood
2023-08-07
*
gh-85160: improve performance of `functools.singledispatchmethod` (#107148)
Pieter Eendebak
2023-08-06
*
gh-106292: restore checking __dict__ in cached_property.__get__ (#106380)
Carl Meyer
2023-07-05
*
gh-105172: Fixed functools.lru_cache typed argument docstring. (GH-105173)
Bar Harel
2023-05-31
*
gh-104600: Make function.__type_params__ writable (#104601)
Jelle Zijlstra
2023-05-18
*
gh-87634: remove locking from functools.cached_property (GH-101890)
Carl Meyer
2023-02-22
*
gh-89828: Do not relay the __class__ attribute in GenericAlias (#93754)
Serhiy Storchaka
2022-06-18
*
This localization technique is no longer cost effective. (GH-30818)
Raymond Hettinger
2022-01-22
*
bpo-46032: Check types in singledispatch's register() at declaration time (GH...
Serhiy Storchaka
2021-12-25
*
bpo-46014: Add ability to use typing.Union with singledispatch (GH-30017)
Yurii Karabas
2021-12-11
*
bpo-44605: Teach @total_ordering() to work with metaclasses (GH-27633)
Raymond Hettinger
2021-08-06
*
Update URLs in comments and metadata to use HTTPS (GH-27458)
Noah Kantrowitz
2021-07-30
*
bpo-31082: Use "iterable" in the docstring for functools.reduce() (GH-20796)
Zackery Spytz
2020-06-28
*
bpo-17005: Move topological sort functionality to its own module (GH-20558)
Pablo Galindo
2020-06-01
*
bpo-40571: Make lru_cache(maxsize=None) more discoverable (GH-20019)
Raymond Hettinger
2020-05-11
*
bpo-39481: Make functools.cached_property, partial, partialmethod generic (#1...
Ethan Smith
2020-04-13
*
Updates functools.py with consistent quotes (GH-18825)
Nikita Sobolev
2020-03-10
*
bpo-35712: Make using NotImplemented in a boolean context issue a deprecation...
MojoVampire
2020-03-03
*
bpo-39815: add cached_property to all (GH-18726)
Hakan Çelik
2020-03-01
*
bpo-17005: Add a class to perform topological sorting to the standard library...
Pablo Galindo
2020-01-23
*
bpo-38565: add new cache_parameters method for lru_cache (GH-16916)
Manjusaka
2019-11-11
*
Doc: Fix Wikipedia link for functools.lru_cache (GH-16183)
amist
2019-09-16
*
bpo-36743: __get__ is sometimes called without the owner argument (#12992)
Raymond Hettinger
2019-08-29
*
[3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)
Serhiy Storchaka
2019-06-05
*
bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)
Serhiy Storchaka
2019-06-01
*
bpo-36772 Allow lru_cache to be used as decorator without making a function c...
Raymond Hettinger
2019-05-26
*
bpo-35252: Remove FIXME from test_functools (GH-10551)
Lysandros Nikolaou
2019-05-19
*
bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)
Serhiy Storchaka
2019-05-06
*
bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)
Serhiy Storchaka
2019-04-01
*
bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553)
Serhiy Storchaka
2019-03-27
*
Consistently move the misses update to just before the user function call (GH...
Raymond Hettinger
2019-01-31
*
bpo-35780: Fix errors in lru_cache() C code (GH-11623)
Raymond Hettinger
2019-01-26
*
bpo-34890: Make iscoroutinefunction, isgeneratorfunction and isasyncgenfuncti...
Pablo Galindo
2018-10-26
*
bpo-32321: Add pure Python fallback for functools.reduce (GH-8548)
madman-bob
2018-10-25
*
bpo-21145: Add cached_property decorator in functools (#6982)
Carl Meyer
2018-08-28
*
bpo-33967: Fix singledispatch raised IndexError when no args (GH-8184)
Dong-hee Na
2018-07-10
*
bpo-32380: Create functools.singledispatchmethod (#6306)
Ethan Smith
2018-05-26
*
bpo-32227: functools.singledispatch supports registering via type annotations...
Łukasz Langa
2017-12-11
*
bpo-31581: Reduce the number of imports for functools (GH-3757)
INADA Naoki
2017-09-30
[next]