This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: _functools._lru_list_elem is exposed unintentionally.
Type: behavior Stage: resolved
Components: Extension Modules Versions: Python 3.11, Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: methane, miss-islington
Priority: normal Keywords: 3.10regression, patch

Created on 2021-05-28 01:37 by methane, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 26416 merged methane, 2021-05-28 02:42
PR 26418 merged miss-islington, 2021-05-28 05:09
Messages (4)
msg394626 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2021-05-28 01:37
_lru_list_elem is internal data strucuture. It is intended to be used only in _lru_cache_wrapper.
Until Python 3.9, it is not exposed. But it is exposed by dd3912 accidentally.
msg394627 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2021-05-28 01:38
Ref: GH-23405.
msg394632 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2021-05-28 05:09
New changeset 28be3191a9db2769ed05e55c6bcbccdd029656dd by Inada Naoki in branch 'main':
bpo-44256: Do not expose _functools._list_elem_type (GH-26416)
https://github.com/python/cpython/commit/28be3191a9db2769ed05e55c6bcbccdd029656dd
msg394639 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2021-05-28 07:10
New changeset 35be1f3602c8c66199d8c0a2f2805115864235fb by Miss Islington (bot) in branch '3.10':
bpo-44256: Do not expose _functools._list_elem_type (GH-26416)
https://github.com/python/cpython/commit/35be1f3602c8c66199d8c0a2f2805115864235fb
History
Date User Action Args
2022-04-11 14:59:46adminsetgithub: 88422
2021-05-28 07:12:11methanesetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-05-28 07:10:52methanesetmessages: + msg394639
2021-05-28 05:09:53methanesetmessages: + msg394632
2021-05-28 05:09:41miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request25013
2021-05-28 02:42:41methanesetkeywords: + patch
stage: patch review
pull_requests: + pull_request25010
2021-05-28 01:38:26methanesetmessages: + msg394627
2021-05-28 01:37:46methanecreate