Re: combine doxygen and doc-strings?

2005-11-20 Thread Diez B. Roggisch
Gabriel Zachmann wrote: > Is there a way to combine doxygen comments, like this one If you are not tied to doxygen, you might consider epydoc - it uses the docstrings, and restructured text which is friendly to the eye. Regards, Diez -- http://mail.python.org/mailman/listinfo/python-list

Re: combine doxygen and doc-strings?

2005-11-20 Thread Henk van Asselt
Gabriel Zachmann wrote: > Is there a way to combine doxygen comments, like this one > > > ## Documentation for a function. > # @var a - variable > # More details. > > def func( a ): > pass > > > with the doc strings, like this one > > > def func( a ): > """ Documentation for a func

Re: combine doxygen and doc-strings?

2005-11-18 Thread Daniel Evers
You're maybe searching for epydoc: http://epydoc.sourceforge.net/ -- http://mail.python.org/mailman/listinfo/python-list

combine doxygen and doc-strings?

2005-11-18 Thread Gabriel Zachmann
Is there a way to combine doxygen comments, like this one ## Documentation for a function. # @var a - variable # More details. def func( a ): pass with the doc strings, like this one def func( a ): """ Documentation for a function. More details. """ pass ? Ob