-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Description
Hello everyone, I am currently using Doxygen 1.9.7 (Dev build with the fix for the issue 9839).
I am using it to generate a documentation on multiple python custom packages.
On one of them, I think there is an issue.
There is an extract of the init.py file of my package:
# -*-coding:utf-8 -*
## @file __init__.py
## @date XXXX/XX/XX
## @author XXX, XXX
## @brief XXX
##
## @details XXX
## @package XXX
## @brief XXX
# Python library modules importation
# -- None --
# Third party modules importation
import urllib3
# Project modules importation
XXX
try:
.......
except TestConfigError:
.......
When generating the documentation, Doxygen raise a warning on the try statement.
It looks like it is interpreting it as a variable:
init.py:40: warning: Member try (variable) of namespace XXX is not documented.
I don't think there is a need in documenting a try statement in Python, but I could be wrong.