You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I notice that methods decorated with functools.cached_property (introduced in Python 3.8) render as generic methods, while those decorated with property are handled differently (leading property keyword, no round brackets):
This is misleading since cached properties are not supposed to be called like normal methods. Would it be possible to make it so that cached properties are rendered in the same way as properties? It looks like sphinx.ext.autodoc has been updated to do this.
The text was updated successfully, but these errors were encountered:
Thank you for this great project!
I notice that methods decorated with
functools.cached_property
(introduced in Python 3.8) render as generic methods, while those decorated withproperty
are handled differently (leadingproperty
keyword, no round brackets):This is misleading since cached properties are not supposed to be called like normal methods. Would it be possible to make it so that cached properties are rendered in the same way as properties? It looks like
sphinx.ext.autodoc
has been updated to do this.The text was updated successfully, but these errors were encountered: