pretty printing graphs

Bengt Richter bokr at oz.net
Tue Jul 29 00:30:02 EDT 2003


On 29 Jul 2003 02:07:14 GMT, bokr at oz.net (Bengt Richter) wrote:
[...]
>====< pphunter.py >==============================================
[...]
>class Node:
[...]
>
>    def showInPage(self, pageHeight=6*11, pageWidth=78):
>        return '\n'.join(self.boxlines(PageHeight, PageWidth))
>
should be
--
    def showInPage(self, pageHeight=6*11, pageWidth=78):
        return '\n'.join(self.boxlines(pageHeight, pageWidth))
--
[...]

Sorry.

Regards,
Bengt Richter




More information about the Python-list mailing list