7
Tôi có docstring sau:Hãy giá trị mặc định autodoc chương trình nhân sư trong các thông số mô tả
def progress_bar(progress, length=20):
'''
Returns a textual progress bar.
>>> progress_bar(0.6)
'[##########--------]'
:param progress: Number between 0 and 1 describes the progress.
:type progress: float
:param length: The length of the progress bar in chars. Default is 20.
:type length: int
:rtype: string
'''
Có cách nào để nói với sphinx
để thêm 'Mặc định là X' một phần để các thông số mô tả nếu có?