10 lines
247 B
Python
10 lines
247 B
Python
import doxygen_alias
|
|
import inspect
|
|
import comment_verifier
|
|
|
|
comment_verifier.check(inspect.getdoc(doxygen_alias.make_something),
|
|
"""\
|
|
A function returning something.
|
|
|
|
:rtype: :py:class:`Something`
|
|
:return: A new object which may be None.""")
|