﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
22691	Allow cached_property to be used on other methods	FunkyBob	nobody	"This adds an optional name property to cached_property, overriding where it stores its cached value.

{{{
class Foo(object):
    def get_bar(self):
        ...heavy work...

    bar = cached_property(get_bar, name='bar')
}}}

Without the name, it would save the result in `__dict__['get_bar']`, thus masking the method.
"	New feature	closed	Utilities	dev	Normal	fixed		loic84	Accepted	1	0	0	0	0	0
