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
/
Lib
/
test
/
test_functools.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-119180: Add `annotationlib` module to support PEP 649 (#119891)
Jelle Zijlstra
2024-07-23
1
-0/+41
*
gh-121027: Make the functools.partial object a method descriptor (GH-121089)
Serhiy Storchaka
2024-07-03
1
-3/+1
*
gh-121027: Add a future warning in functools.partial.__get__ (#121086)
Serhiy Storchaka
2024-06-27
1
-0/+17
*
gh-121025: Improve partialmethod.__repr__ (GH-121033)
Bénédikt Tran
2024-06-26
1
-0/+8
*
gh-119011: `type.__type_params__` now return an empty tuple (#119296)
Nikita Sobolev
2024-05-28
1
-0/+8
*
gh-118402: Fix inspect.signature() for functools.cmp_to_key() result (GH-118427)
Serhiy Storchaka
2024-04-30
1
-3/+9
*
gh-117783: Immortalize objects that use deferred reference counting (#118112)
Sam Gross
2024-04-29
1
-0/+1
*
GH-100242: bring functools.py partial implementation more in line with C code...
CF Bolz-Tereick
2024-04-17
1
-0/+13
*
gh-116303: Skip tests if C recursion limit is unavailable (GH-117368)
Erlend E. Aasland
2024-04-08
1
-1/+1
*
gh-117008: Fix functools test_recursive_pickle() (#117009)
Victor Stinner
2024-03-23
1
-2/+4
*
gh-115264: Fix `test_functools` with `-00` mode (#115276)
Nikita Sobolev
2024-03-13
1
-3/+12
*
gh-72249: Include the module name in the repr of partial object (GH-101910)
Furkan Onder
2024-02-25
1
-12/+2
*
gh-85294: Handle missing arguments to @singledispatchmethod gracefully (GH-21...
Ammar Askar
2024-02-16
1
-1/+16
*
GH-113655: Lower the C recursion limit on various platforms (GH-113944)
Mark Shannon
2024-01-16
1
-1/+7
*
gh-81682: Fix test failures when CPython is built without docstrings (GH-113410)
Serhiy Storchaka
2023-12-23
1
-0/+2
*
GH-112215: Increase C recursion limit for non debug builds (GH-113397)
Mark Shannon
2023-12-22
1
-0/+14
*
gh-90805: Make sure test_functools works with and without _functoolsmodule (G...
Nikita Sobolev
2023-09-11
1
-30/+28
*
gh-107995: Fix doctest collection of functools.cached_property objects (#107996)
Tyler Smart
2023-08-18
1
-0/+3
*
gh-85160: improve performance of `functools.singledispatchmethod` (#107148)
Pieter Eendebak
2023-08-06
1
-0/+68
*
gh-106292: restore checking __dict__ in cached_property.__get__ (#106380)
Carl Meyer
2023-07-05
1
-0/+19
*
gh-104600: Make function.__type_params__ writable (#104601)
Jelle Zijlstra
2023-05-18
1
-1/+3
*
gh-77757: replace exception wrapping by PEP-678 notes in typeobject's __set_n...
Irit Katriel
2023-04-11
1
-2/+2
*
gh-87634: remove locking from functools.cached_property (GH-101890)
Carl Meyer
2023-02-23
1
-36/+0
*
gh-64373: Convert `_functools` to Argument Clinic (#96640)
Nikita Sobolev
2022-10-07
1
-0/+12
*
Fix misused variable that was preventing permutations of classes from being t...
Jingxuan He
2022-07-28
1
-1/+1
*
gh-84623: Remove unused imports in tests (#93772)
Victor Stinner
2022-06-13
1
-2/+0
*
gh-90172: add test for functools.singledispatch on Union types with None type...
Thaddeus1499
2022-05-03
1
-0/+43
*
bpo-40280: Detect missing threading on WASM platforms (GH-32352)
Christian Heimes
2022-04-07
1
-0/+4
*
bpo-46998: Allow subclassing Any at runtime (GH-31841)
Shantanu
2022-04-05
1
-8/+0
*
bpo-46388: Test NotImplemented code path for functools.total_ordering (GH-30616)
Russel Webber
2022-01-15
1
-0/+67
*
bpo-46380: Apply tests to both C and Python version (GH-30606)
Nikita Sobolev
2022-01-14
1
-3/+3
*
bpo-46032: Check types in singledispatch's register() at declaration time (GH...
Serhiy Storchaka
2021-12-25
1
-0/+68
*
bpo-46014: Add ability to use typing.Union with singledispatch (GH-30017)
Yurii Karabas
2021-12-10
1
-0/+30
*
bpo-45679: add `tuple` tests with `lru_cache` to `test_functools` (GH-29339)
Nikita Sobolev
2021-11-05
1
-0/+27
*
bpo-45678: Add more ``singledispatchmethod`` tests (GH-29412)
Alex Waygood
2021-11-05
1
-0/+99
*
bpo-45678: Add ``functools.singledispatchmethod`` tests (GH-29328)
Alex Waygood
2021-11-03
1
-1/+41
*
bpo-39679: Add tests for classmethod/staticmethod singledispatchmethods (GH-2...
Alex Waygood
2021-10-19
1
-0/+42
*
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Serhiy Storchaka
2021-08-29
1
-0/+1
*
bpo-44605: Teach @total_ordering() to work with metaclasses (GH-27633)
Raymond Hettinger
2021-08-06
1
-0/+28
*
bpo-43988: Use check disallow instantiation helper (GH-26392)
Erlend Egeberg Aasland
2021-05-27
1
-2/+3
*
bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)
Erlend Egeberg Aasland
2021-04-30
1
-0/+6
*
bpo-38605: Revert making 'from __future__ import annotations' the default (GH...
Pablo Galindo
2021-04-21
1
-2/+2
*
bpo-40137: Convert _functools module to use PyType_FromModuleAndSpec. (GH-23405)
Hai Shi
2020-12-29
1
-2/+1
*
bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)
Batuhan Taskaya
2020-10-06
1
-2/+2
*
bpo-40275: Use new test.support helper submodules in tests (GH-21219)
Hai Shi
2020-06-30
1
-3/+6
*
bpo-17005: Move topological sort functionality to its own module (GH-20558)
Pablo Galindo
2020-05-31
1
-270/+1
*
bpo-40275: Adding threading_helper submodule in test.support (GH-20263)
Hai Shi
2020-05-27
1
-5/+6
*
bpo-40571: Make lru_cache(maxsize=None) more discoverable (GH-20019)
Raymond Hettinger
2020-05-12
1
-0/+19
*
bpo-40504: Allow weakrefs to lru_cache objects (GH-19938)
Dennis Sweeney
2020-05-05
1
-0/+31
*
bpo-17005: Add a class to perform topological sorting to the standard library...
Pablo Galindo
2020-01-23
1
-1/+273
[next]