This is unnecessary and inconsistent with "builtin" case in which the docstrings are not indented in the generated C++ code, thus making it impossible to write tests working in both cases. Most of the changes in this commit simply remove the extra whitespace from the expected values in the tests.
20 lines
319 B
Python
20 lines
319 B
Python
#!/usr/bin/python
|
|
|
|
import doxygen_ignore
|
|
import commentVerifier
|
|
|
|
commentVerifier.check(doxygen_ignore.func.__doc__,
|
|
r"""
|
|
A contrived example of ignoring too many commands in one comment.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This is specific to **Python**.
|
|
|
|
|
|
Command ignored, but anything here is still included.
|
|
|
|
""")
|