Does anyone using pylint knows a way to make pylint ignore these
'missing docstring' warnings when the base class version of the method
actually defines the docstring ?
'Cause my doc builder (epydoc) handle it properly and propagate
docstrings if asked to. Too bad pylint is complaining about it.
I don't want to deactivate this warning.
Any hint would be apreciated
JM
Look for this setting in the pylint configuration file:
# not require a docstring
no-docstring-rgx=__.*__
-John
JM
I'm a Pylint newbie myself. The only (half-baked) idea I can come up
with is to use a naming convention for such derived classes. For
example, if all such class names ended with "_d" (ugh!), you could
modify the configuration setting like this:
no-docstring-rgx=(__.*__|.*_d)
-John
JM