summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-08-15 16:46:22 (GMT)
committerFred Drake <fdrake@acm.org>2001-08-15 16:46:22 (GMT)
commit3d05161c836fcf6c3eb5f26a418e9ef54263c7a7 (patch)
treeca01e2927475fd7d299649a8ac7a5feed374f071 /Tools
parent13130bc5b1ab68e9c3b4208e544a3b801508d522 (diff)
downloadcpython-3d05161c836fcf6c3eb5f26a418e9ef54263c7a7.zip
cpython-3d05161c836fcf6c3eb5f26a418e9ef54263c7a7.tar.gz
cpython-3d05161c836fcf6c3eb5f26a418e9ef54263c7a7.tar.bz2
Change the generated markup so that attribute names are properly marked.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/compiler/doc/astdocgen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/compiler/doc/astdocgen.py b/Tools/compiler/doc/astdocgen.py
index c593ce1..41e8c4b 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}"