# TODO: Multiple errors can be wrapped inside an exception. # WfcApiException should do recursive error checking to locate # and store an arbitrary number of nested errors.
不幸的是,PyCharm只将第一行识别为TODO评论.以下任何行都被视为标准Python注释.
在PyCharm中格式化多行TODO注释的正确方法是什么?
PyCharm does not支持多行TODO,另一种选择是使用多行字符串
''' TODO foobar foobar '''
这将不会像#TODO foo那样突出显示TODO,但它会突出显示字符串突出显示的其余代码.
你也可以试试
# TODO ----------------- # TODO foobar this # TODO comment # TODO comment # TODO comment # TODO ------------------
如果你有一个特别厚实和重要的TODO笔记.