18 lines
295 B
Python
18 lines
295 B
Python
|
|
import doxygen_ignore
|
||
|
|
import inspect
|
||
|
|
import comment_verifier
|
||
|
|
|
||
|
|
comment_verifier.check(inspect.getdoc(doxygen_ignore.func),
|
||
|
|
"""\
|
||
|
|
A contrived example of ignoring too many commands in one comment.
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
This is specific to **Python**.
|
||
|
|
|
||
|
|
|
||
|
|
Command ignored, but anything here is still included.""")
|