Re: doxygen

2007-03-04 Thread Mike Kent
On Mar 4, 1:15 pm, Jan Danielsson <[EMAIL PROTECTED]> wrote: >When I run doxygen on my python files, it does document classes, but > not "standalone" functions. Look in the doxygen config file for your python project, named 'Doxyfile', for the config set

doxygen

2007-03-04 Thread Jan Danielsson
Hello all, I guess I should really be asking in some doxygen mailing list, but since I believe that I found doxygen through this group, I assume that there are some people here who can answer. When I run doxygen on my python files, it does document classes, but not "standalone"

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 > > >

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.