PEP 257 docstring trim in standard library?
PEP 257表示:
Docstring processing tools will strip a uniform amount of indentation from the second and further lines of the docstring, equal to the minimum indentation of all non-blank lines after the first line. Any indentation in the first line of the docstring (i.e., up to the first newline) is insignificant and removed. Relative indentation of later lines in the docstring is retained. Blank lines should be removed from the beginning and end of the docstring.
执行该算法的函数
我可以找到一些问题,人们问如何格式化文档字符串,并将其提交给PEP257(例如,这个)。我还看到一些关于工具的信息,这些工具试图确保您的docstring遵循PEP257(例如,这个)。我找不到任何一个python库,它实际上是一个"docstring处理工具",它以pep 257中定义的方式处理docstring——或者至少,我找不到一个可以直接使用此docstring处理功能的工具。
PEP 257中显示的函数
我希望这样做的原因是编写一个装饰器,对类/函数的docstrings进行一些Python内部重新格式化。我不想生成HTML或其他任何东西;我只想更改实际对象的实际docstring。我想获取一个python对象的纯文本
在寻找一个相关问题的答案时,我设法找到了这个问题的答案。