Doxygen - Python Module Definition with @package skips some documentation -


i'm documenting python modules using doxygen , @package command group each set of functions , keep directory structure documented. unfortunately, there times when @package doesn't doesn't correctly.

for example, have 2 different sets of modules in 2 different directories:

  1. main/foo/modulea.py
  2. main/bar/src/moduleb.py

for reason when markup modulea.py "@package foo.modulea", modulea's documentation 100% intact.

but when markup moduleb.py @package bar.src.moduleb, documentation contains basic description of moduleb, , skips other function documentation within file. if remove "full package name" , use @package moduleb, documentation included. if add additional namespace, basic description.

can explain why might happening? i'm not clear on how doxygen decides documentation group in @package , skip.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -