index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Doc
/
library
/
functools.rst
Commit message (
Expand
)
Author
Age
Files
Lines
*
Docs: align usage of versionadded/versionchanged with recommended practice (#...
Erlend E. Aasland
2024-01-22
1
-3/+3
*
`functools.partial` docs: Use the more common spelling for "referenceable" (#...
Rodrigo Girão Serrão
2024-01-03
1
-1/+1
*
gh-102757: fix function signature mismatch for `functools.reduce` between cod...
Xuehai Pan
2023-09-18
1
-6/+8
*
gh-107619: Extend functools LRU cache docs with generators and async function...
Hadházy Tamás
2023-08-20
1
-2/+3
*
gh-104112: link from cached_property docs to method-caching FAQ (#104113)
Carl Meyer
2023-05-04
1
-12/+4
*
GH-103475: cache() and lru_cache() do not have a "call once" guarantee (GH-10...
Raymond Hettinger
2023-04-22
1
-4/+14
*
Minor improvements to the functools docs (#103672)
Raymond Hettinger
2023-04-22
1
-3/+2
*
gh-87634: remove locking from functools.cached_property (GH-101890)
Carl Meyer
2023-02-23
1
-0/+16
*
GH-101898: Fix missing term references for hashable definition (#101899)
Furkan Onder
2023-02-14
1
-1/+1
*
Doc: sphinx-lint finds two other default roles. (GH-98019)
Julien Palard
2022-10-07
1
-2/+2
*
GH-96851: Add link to FAQ entry for caching method calls. (GH-96902)
Raymond Hettinger
2022-09-18
1
-0/+3
*
GH-93179: Document the thread safety of functools.lru_cache (GH-95970)
Raymond Hettinger
2022-08-18
1
-0/+6
*
Fix documentation typo for functools.cmp_to_key (GH-95766)
Andrzej Bartosiński
2022-08-08
1
-1/+1
*
bpo-46014: Add docs regarding `functools.singledispatch` changes in 3.11 (#32...
Yurii Karabas
2022-04-19
1
-0/+21
*
bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)
Hugo van Kemenade
2022-03-30
1
-1/+1
*
bpo-45701: Improve documentation for *typed* parameter (GH-29498)
Raymond Hettinger
2021-11-09
1
-4/+10
*
bpo-45762: Improve docs for ``@singledispatch``/``@singledispatchmethod`` (GH...
Alex Waygood
2021-11-05
1
-22/+26
*
Update URLs in comments and metadata to use HTTPS (GH-27458)
Noah Kantrowitz
2021-07-30
1
-1/+1
*
bpo-44310: Note that lru_cache keep references to both arguments and results...
Raymond Hettinger
2021-06-14
1
-6/+9
*
bpo-42781: Document the mechanics of cached_property from a user viewpoint (G...
Raymond Hettinger
2021-01-01
1
-4/+14
*
bpo-42127: Document effect of cached_property on key-sharing dictionaries (G...
Raymond Hettinger
2020-10-25
1
-9/+24
*
bpo-41905: Add abc.update_abstractmethods() (GH-22485)
Ben Avrahami
2020-10-06
1
-0/+7
*
bpo-17005: Move topological sort functionality to its own module (GH-20558)
Pablo Galindo
2020-05-31
1
-195/+1
*
Fix Wikipedia link (GH-20031)
Allen Guo
2020-05-12
1
-5/+5
*
bpo-40571: Make lru_cache(maxsize=None) more discoverable (GH-20019)
Raymond Hettinger
2020-05-12
1
-0/+26
*
Remove outdated and confusing advice about setting maxsize (GH-19889)
Raymond Hettinger
2020-05-03
1
-2/+1
*
bpo-17005: Minor improvements to the documentation of TopologicalSorter (GH-1...
Pablo Galindo
2020-01-23
1
-75/+67
*
bpo-17005: Add a class to perform topological sorting to the standard library...
Pablo Galindo
2020-01-23
1
-0/+208
*
bpo-21767: explicitly mention abc support in functools.singledispatch docs (#...
Batuhan Taşkaya
2019-11-19
1
-0/+14
*
bpo-38565: add new cache_parameters method for lru_cache (GH-16916)
Manjusaka
2019-11-12
1
-0/+8
*
Do not use explicit inheritance from object in the documentation. (GH-13936)
Serhiy Storchaka
2019-06-10
1
-1/+1
*
Use more PEP 570 syntax in the documentation. (GH-13720)
Serhiy Storchaka
2019-06-01
1
-1/+1
*
bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)
Serhiy Storchaka
2019-06-01
1
-2/+2
*
bpo-36772 Allow lru_cache to be used as decorator without making a function c...
Raymond Hettinger
2019-05-26
1
-1/+14
*
bpo-32380: add "versionadded: 3.8" to singledispatchmethod (GH-12580)
Inada Naoki
2019-03-27
1
-0/+3
*
bpo-35300: Add usage note to the lru_cache() docs (GH-10707)
Raymond Hettinger
2018-11-26
1
-0/+5
*
bpo-34748: link to :ref:`partial-objects` in functools.partial doc. (GH-9809)
Andrei Petre
2018-10-23
1
-5/+6
*
Use dict unpacking in functools.partial() docs (GH-9412)
Sergey Fedoseev
2018-10-19
1
-2/+1
*
Fix name of argument in docs for functools.reduce(). (#9634)
Brendan Jurd
2018-10-01
1
-6/+6
*
Note that distinct argument patterns can be cached separately (GH-9298)
Raymond Hettinger
2018-09-14
1
-0/+5
*
bpo-21145: Add cached_property decorator in functools (#6982)
Carl Meyer
2018-08-28
1
-0/+33
*
DOC: In `reduce`, refer to `accumulate` (GH-7930)
Gerrit Holl
2018-07-04
1
-0/+2
*
bpo-32380: Create functools.singledispatchmethod (#6306)
Ethan Smith
2018-05-26
1
-0/+46
*
bpo-32227: functools.singledispatch supports registering via type annotations...
Łukasz Langa
2017-12-11
1
-7/+21
*
bpo-31567: add or fix decorator markup in docs (#3959)
Daisuke Miyakawa
2017-10-12
1
-2/+2
*
Issue #19795: Improved more markups of True/False.
Serhiy Storchaka
2016-10-19
1
-1/+1
*
Issue #19795: Mark up None as literal text.
Serhiy Storchaka
2016-10-19
1
-1/+1
*
Issue #24314: Fix doc links for general attributes like __name__, __dict__
Martin Panter
2016-06-18
1
-1/+1
*
Issue #24136: Document generalized unpacking, PEP 448
Martin Panter
2016-06-12
1
-1/+1
*
Issue #22558: Add remaining doc links to source code for Python-coded modules.
Terry Jan Reedy
2016-06-11
1
-0/+1
[next]