comment

returns the comment.

Source


def comment(self):
    ret = []
    for comment in self._comment:
        com = '<!--' + comment + '-->'
        ret.append(com)
    return ' '.join(ret)