On Wed, 2009-10-14 at 14:21 -0700, Rich Shepard wrote: > On Wed, 14 Oct 2009, Nikos Alexandris wrote: > > > I don't know if doxygen or pydoc is what I am looking for. Or is it > > exactly what I need? > > Nikos, > > Pydocs, in specific circumstances. > > To provide multiline comments use the triple quotation mark method; for > example, """This class takes the foo as input and returns the bar. > except when the situation calls for a different result.""" > > For single line comments use the # sign; e.g., > # Status Bar > self.statusbar = self.CreateStatusBar(1, 0) > self.statusbar.SetStatusWidths([-1]) > > Rich
Yes, I already do that. I have more comments than code :-p. And I tried pydoc. It works... but I am not sure this is what I need :-?