I am trying to document a python module with Doxygen - however it seems that the existence of __init__.py files is causing problems
The __init__.py files are currently empty (I tried adding comments inside it, e.g.
#
but without success). Module namespaces are not allowed on the Doxygen side. If below was my file:
#
He will select the lines "Description" and "A few more descriptions." Even if any of the classes in the file does not contain __init__ methods (suggested that there may be name conflicts), doxygen will not receive anything in the module.
I tried using various EXCLUDE directives in Doxyfile but nothing worked.
Has anyone encountered this problem before? When deleting __init__.py files, everything works fine, but this is a much less optimal solution.
source share