> + > +class AtDoc(object): > + def __init__(self): > + self.retval = None > + self.since = "" > + self.annot = [] > + > + def cb(self, type, str): > + if (type == "param"): > + words = str.split(" ", 2); > + self.annot = [] > + elif (type == "return"): > + self.annot = [] > + elif (type == "since"): > + self.since = str.rstrip() > + elif (type == "geany:skip"):
this is handled right below again
—
Reply to this email directly or view it on GitHub.