是否可以使用 sphinx 的 autodoc 功能将几个方法文档字符串与 sphinx 组合在一起,以便它们一起列出?
class Test(object):
def a(self):
"""A method of group foo."""
def b(self):
"""A method of group bar."""
def c(self):
"""A method of group bar."""
def d(self):
"""A method of group foo."""
在生成的文档中,应将 a 和 d 以及 b 和 c 一起列出。