From: Fred Drake Date: Mon, 28 Dec 1998 20:46:53 +0000 (+0000) Subject: Print a line to the console reporting the number of index nodes X-Git-Tag: v1.5.2b2~495 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=03a0235793973cf319b48b21d10d945db27d3089;p=python Print a line to the console reporting the number of index nodes processed. This can be interesting to see. --- diff --git a/Doc/tools/buildindex.py b/Doc/tools/buildindex.py index 01805f34b3..e282f3cc61 100755 --- a/Doc/tools/buildindex.py +++ b/Doc/tools/buildindex.py @@ -1,9 +1,8 @@ #! /usr/bin/env python -""" -""" __version__ = '$Revision$' +import os import re import string import sys @@ -307,16 +306,21 @@ def main(): nodes = [] for fn in args: nodes = nodes + load(open(fn)) + num_nodes = len(nodes) nodes.sort() collapse(nodes) if letters: html = format_html_letters(nodes, columns) else: html = format_html(nodes, columns) + program = os.path.basename(sys.argv[0]) if ofn == "-": sys.stdout.write(html) + sys.stderr.write("\n%s: %d index nodes" % (program, num_nodes)) else: open(ofn, "w").write(html) + print + print "%s: %d index nodes" % (program, num_nodes) if __name__ == "__main__":