DocChecker.check() does not, in fact, return anything
Brought to you by:
edloper
The API documentation for DocChecker.check() claims:
check(self, *check_sets)
[...]
Returns: boolean
True if no problems were found.
However, there is no return statement anywhere in the function. check() always returns None and the documentation is incorrect.