本文介绍了这些标签是python docstring中的@ivar @param和@type?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

安瓿项目在docstring中使用一些标签,就像javadoc一样。

The ampoule project uses some tags in docstring, like the javadoc ones.

例如,从第86行:

def start(self, ampChild=None):
    """
    Starts the ProcessPool with a given child protocol.

    @param ampChild: a L{ampoule.child.AMPChild} subclass.
    @type ampChild: L{ampoule.child.AMPChild} subclass
    """

这些标签是什么,哪个工具使用它?

What are these tags, which tool uses it.

推荐答案

标记为文档工具,可能。

Markup for a documentation tool, probably epydoc.

这篇关于这些标签是python docstring中的@ivar @param和@type?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 04:05