gpt4 book ai didi

python - 狮身人面像文档 : how to reference a Python property?

转载 作者:太空狗 更新时间:2023-10-29 22:22:17 24 4
gpt4 key购买 nike

如何引用一个用@property装饰的方法?

对于简单的方法,:py:meth: 工作正常,但对于属性则不然:它不会创建到它们的链接。

最佳答案

您应该改用 :py:attr:。这个例子对我来说很好用:

class SomeClass(object):
"""This is the docstring of SomeClass."""

@property
def some_property(self):
"""This is the docstring of some_property"""
return None

def some_method(self):
"""This is the docstring of some_method.

And this is a reference to :py:attr:`~some_property`
"""

关于python - 狮身人面像文档 : how to reference a Python property?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27170958/

24 4 0
文章推荐: Python - 类型错误 : object of type '...' has no len()
文章推荐: c# - 如何处理时间耦合?
文章推荐: c# - 如何在 Asp.net MVC 5 中填充没有 Entity Framework 的模型
文章推荐: c# - 在 View 模型中使用 Caliburn 的 conductor 时窗口标题被覆盖