[issue45701] Add tuple tests to `functools.lru_cache`

2021-11-18 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0df5d31ac7b32d3b948952c834783cd357fa3e22 by Miss Islington (bot) in branch '3.10': bpo-45701: Improve documentation for *typed* parameter (GH-29498) (GH-29509) https://github.com/python/cpython/commit/0df5d31ac7b32d3b948952c834783cd357fa3e22

[issue45701] Add tuple tests to `functools.lru_cache`

2021-11-09 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +27760 pull_request: https://github.com/python/cpython/pull/29509 ___ Python tracker

[issue45701] Add tuple tests to `functools.lru_cache`

2021-11-09 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 912a4ccc3a523e2990cc501393adfc661614c73a by Raymond Hettinger in branch 'main': bpo-45701: Improve documentation for *typed* parameter (GH-29498) https://github.com/python/cpython/commit/912a4ccc3a523e2990cc501393adfc661614c73a --

[issue45701] Add tuple tests to `functools.lru_cache`

2021-11-09 Thread Raymond Hettinger
Change by Raymond Hettinger : -- nosy: +rhettinger nosy_count: 1.0 -> 2.0 pull_requests: +27747 pull_request: https://github.com/python/cpython/pull/29498 ___ Python tracker

[issue45701] Add tuple tests to `functools.lru_cache`

2021-11-05 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45701] Add tuple tests to `functools.lru_cache`

2021-11-03 Thread Nikita Sobolev
Change by Nikita Sobolev : -- keywords: +patch pull_requests: +27641 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29339 ___ Python tracker ___

[issue45701] Add tuple tests to `functools.lru_cache`

2021-11-03 Thread Nikita Sobolev
New submission from Nikita Sobolev : Context: https://bugs.python.org/issue45679 We need to add tests that `tuple` works as expected with `functools.lru_cache`, including `1` / `1.0` / `True` and `0` / `0.0` / `False` special cases. PR: https://github.com/python/cpython/pull/29339