Re: [Epydoc-devel] Epydoc crashes
Brought to you by:
edloper
From: Damien B. - U. <dam...@ub...> - 2008-09-23 16:41:49
|
Le Tue, 23 Sep 2008 10:58:24 -0400, "Edward Loper" <ed...@br...> a écrit : > (i.e., you're assigning a string value to __all__, not a list or tuple > -- remember, it's the comma(s) that makes a tuple, not the > parentheses.) Apparently Python is happy with this and does the right > thing, but epydoc doesn't. If you just want epydoc to work on your > file, then change that line to: > > __all__ = ("global_skin",) Ho ! You're right ! As well as being a sexy doc generator, Epydoc is also a very powerful syntax checker ! It detects errors that pychecker, pyflakes and pylint missed ! Thank you for your quick answer. Damien. |