将文档字符串放在Python属性上的正确方法是什么?

时间:2013-04-15 22:04:32

标签: python properties decorator

我应该制作几个文档字符串,还是只编写一个(我应该把它放在哪里)?

@property
def x(self):
     return 0
@x.setter
def x(self, values):
     pass

我看到property()接受了doc参数。

1 个答案:

答案 0 :(得分:37)

在getter上写下docstring,因为1)这是help(MyClass)显示的内容,2)它是如何在Python docs -- see the x.setter example中完成的。

关于1):

class C(object):
    @property
    def x(self):
        """Get x"""
        return getattr(self, '_x', 42)

    @x.setter
    def x(self, value):
        """Set x"""
        self._x = value

然后:

>>> c = C()
>>> help(c)
Help on C in module __main__ object:

class C(__builtin__.object)
 |  Data descriptors defined here:
 |
 |  __dict__
 |      dictionary for instance variables (if defined)
 |
 |  __weakref__
 |      list of weak references to the object (if defined)
 |
 |  x
 |      Get x

>>>

请注意,setter的文档字符串“Set x”将被忽略。

因此,您应该在getter函数上为整个属性(getter和setter)编写docstring,以使其可见。良好属性docstring的示例可能是:

class Serial(object):
    @property
    def baudrate(self):
        """Get or set the current baudrate. Setting the baudrate to a new value
        will reconfigure the serial port automatically.
        """
        return self._baudrate

    @baudrate.setter
    def baudrate(self, value):
        if self._baudrate != value:
            self._baudrate = value
            self._reconfigure_port()