[issue39815] functools.cached_property() not included in __all__

2020-03-01 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue39815] functools.cached_property() not included in __all__

2020-03-01 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: 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 -- _

[issue39815] functools.cached_property() not included in __all__

2020-03-01 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal nosy_count: 3.0 -> 4.0 pull_requests: +18085 pull_request: https://github.com/python/cpython/pull/18728 ___ Python tracker ___

[issue39815] functools.cached_property() not included in __all__

2020-03-01 Thread miss-islington
miss-islington added the comment: 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 -- nosy: +miss-islington ___

[issue39815] functools.cached_property() not included in __all__

2020-03-01 Thread Hakan
Change by Hakan : -- keywords: +patch nosy: +hakancelik nosy_count: 1.0 -> 2.0 pull_requests: +18083 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18726 ___ Python tracker _

[issue39815] functools.cached_property() not included in __all__

2020-03-01 Thread Raymond Hettinger
New submission from Raymond Hettinger : >>> import functools >>> functools.cached_property >>> functools.__all__ ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES', 'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'partial', 'partialmethod', 'singledispatch', 'singledi

[issue39815] functools.cached_property() not included in __all__

2020-03-01 Thread Raymond Hettinger
Change by Raymond Hettinger : -- components: Library (Lib) keywords: easy nosy: rhettinger priority: normal severity: normal status: open title: functools.cached_property() not included in __all__ type: behavior versions: Python 3.8, Python 3.9 ___ P