我该如何评论部分Python函数?

时间:2010-10-20 15:15:34

标签: python function comments partial

说我有以下代码:

def func(x, y = 1, z = 2):
    """ A comment about this function """
    return x + y + z

another_func = partial(func, z = 4)

记录another_func函数的正确或Pythonic方式是什么?

1 个答案:

答案 0 :(得分:5)

请参阅http://docs.python.org/library/functools.html#functools.partial

上的partial()说明

像这样:

another_func.__doc__ = "My documentation"