We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7790712 commit 2ec7e31Copy full SHA for 2ec7e31
tests/test_docs.py
@@ -68,6 +68,9 @@ def test_verify_docs():
68
# Ignore doc-less BaseException inheritance
69
err = None
70
elif doc is None:
71
+ # Set level to WARN for private/internal objects
72
+ if shortname.startswith('_'):
73
+ level = 'WARN'
74
err = 'Missing __doc__ for: %s (type %s)' % (n, type(o))
75
elif not re.search(r':', doc):
76
err = 'Missing Doxygen tag for: %s (type %s):\n---\n%s\n---' % (n, type(o), doc)
0 commit comments