Opened 11 years ago
Last modified 11 years ago
#22691 closed New feature
Allow cached_property to be used on other methods — at Version 1
Description (last modified by ) ¶
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.
Change History (1)
comment:1 by , 11 years ago
Cc: | added |
---|---|
Description: | modified (diff) |
Has patch: | set |
Needs documentation: | set |
Patch needs improvement: | set |
Triage Stage: | Unreviewed → Accepted |
Type: | Uncategorized → New feature |
Version: | 1.6 → master |
Note:
See TracTickets
for help on using tickets.
Sounds good.
PR: https://github.com/django/django/pull/2707
Since
cached_property
is documented, it'll need docs update and release notes.