12 lines
266 B
Python
12 lines
266 B
Python
#!/usr/bin/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.""")
|