mirror of
https://github.com/django/django.git
synced 2025-09-18 16:30:01 +00:00
Fixed #23688 -- Updated cached_property to preserve docstring of original function
This commit is contained in:
parent
54e695331b
commit
dbf7a3df45
2 changed files with 5 additions and 0 deletions
|
@ -51,6 +51,7 @@ class cached_property(object):
|
|||
"""
|
||||
def __init__(self, func, name=None):
|
||||
self.func = func
|
||||
self.__doc__ = getattr(func, '__doc__')
|
||||
self.name = name or func.__name__
|
||||
|
||||
def __get__(self, instance, type=None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue