On May 26, 6:59 am, "Edward K. Ream" <[email protected]> wrote: > epydoc...looks good to me.
Apparently epydoc is not being updated, but it's nothing that can't be handled. There is a problem with --docformat restructuredtext or __docformat__ = "restructuredtext en":: UNEXPECTED ERROR: 'Text' object has no attribute 'data' Use --debug to see trace information. Google solved this problem: http://www.agapow.net/programming/python/epydoc-go-boom The solution is to hack the code from:: # markup/restructuredtext.py, line 307 m = self._SUMMARY_RE.match(child.data) To:: try: m = self._SUMMARY_RE.match(child.data) except AttributeError: m = None This seems a small price to pay for access to a superb tool. EKR -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/leo-editor?hl=en.
