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.cached_property() not included in __all__
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: hakancelik, miss-islington, pablogsal, rhettinger
Priority: normal Keywords: easy, patch

Created on 2020-03-01 18:34 by rhettinger, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 18726 merged hakancelik, 2020-03-01 20:17
PR 18728 merged pablogsal, 2020-03-01 23:40
Messages (3)
msg363088 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2020-03-01 20:13
>>> import functools
>>> functools.cached_property
<class 'functools.cached_property'>
>>> functools.__all__
['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES', 'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'partial', 'partialmethod', 'singledispatch', 'singledispatchmethod']
msg363096 - (view) Author: miss-islington (miss-islington) Date: 2020-03-01 21:01
New changeset 217dce9ee6e3cf27a0cedbe1e4a6455776373ec2 by Hakan Çelik in branch 'master':
bpo-39815: add cached_property to all (GH-18726)
https://github.com/python/cpython/commit/217dce9ee6e3cf27a0cedbe1e4a6455776373ec2
msg363110 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2020-03-02 00:08
New changeset 12b714391e485d0150b343b114999bae4a0d34dd by Pablo Galindo in branch '3.8':
[3.8] bpo-39815: add cached_property to all (GH-18726) (GH-18728)
https://github.com/python/cpython/commit/12b714391e485d0150b343b114999bae4a0d34dd
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 83996
2020-03-02 00:08:52pablogsalsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-03-02 00:08:32pablogsalsetmessages: + msg363110
2020-03-01 23:40:43pablogsalsetnosy: + pablogsal
pull_requests: + pull_request18085
2020-03-01 21:01:38miss-islingtonsetnosy: + miss-islington
messages: + msg363096
2020-03-01 20:17:28hakanceliksetkeywords: + patch
nosy: + hakancelik

pull_requests: + pull_request18083
stage: patch review
2020-03-01 20:13:03rhettingersetmessages: + msg363088
2020-03-01 18:34:39rhettingercreate