From: Fred Drake Date: Wed, 15 Aug 2001 16:46:22 +0000 (+0000) Subject: Change the generated markup so that attribute names are properly marked. X-Git-Tag: v2.2a3~537 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d05161c836fcf6c3eb5f26a418e9ef54263c7a7;p=python Change the generated markup so that attribute names are properly marked. --- diff --git a/Tools/compiler/doc/astdocgen.py b/Tools/compiler/doc/astdocgen.py index c593ce10c5..41e8c4bb81 100644 --- a/Tools/compiler/doc/astdocgen.py +++ b/Tools/compiler/doc/astdocgen.py @@ -20,7 +20,7 @@ def main(): print "\\lineiii{%s}{}{}" % node.name for arg in node.argnames[1:]: - print "\\lineiii{}{%s}{}" % arg + print "\\lineiii{}{\\member{%s}}{}" % arg print "\\hline", "\n" print "\\end{longtableiii}"