I get the following errors:
Warning: Ignoring docstring comment block followed by a blank line in '/
home/gpk/speechresearch/gmisclib/wavio.py' on line 15
Warning: Ignoring docstring comment block followed by a blank line in '/
home/gpk/speechresearch/gmisclib/wavio.py' on line 17
Warning: Ignoring docstring comment block followed by a blank line in '/
home/gpk/speechresearch/gmisclib/wavio.py' on line 19
However, the relevant code seems to be consistent with the epydoc documentation on variable docstrings. (http://epydoc.sourceforge.net/manual-docstring.html ).
Here, I've added line numbers
14 import Num
15
16 #: Cause L{write} to raise an error on overflow.
17 OV_ERROR = 0
18 #: Cause L{write} to truncate overflows.
19 OV_LIMIT = 1
20 #: Cause L{write} to silently ignore overflows.
21 OV_IGNORE = 2
This is epydoc in Ubuntu Meerkat 10.10, eypdoc versuion 3.0.1-4. The error message comes from the epydoc.docparser module.