Pragmas in python

前端 未结 2 827
醉酒成梦
醉酒成梦 2021-02-01 12:23

I\'m reading bottle.py source code. It\'s a web framework, with only 3000+ lines python code. So cool.

I found some code like this:

class ServerAdapter(o         


        
2条回答
  •  一生所求
    2021-02-01 13:10

    For Python, it's simply a comment. It might be an annotation targeted at some external tool, which reads and analyzes Python code, similar, for example, to doctest's #doctest: +ELLIPSIS annotations or PyLint's # pylint: disable=W0613 style annotations.

提交回复
热议问题