summaryrefslogtreecommitdiffstats
path: root/Doc/tools/newind.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-03-09 16:38:32 (GMT)
committerFred Drake <fdrake@acm.org>1998-03-09 16:38:32 (GMT)
commit568113a75b9b804f8d65e78219db2b2212541647 (patch)
treeeb3daad50a9dd79ece8b4d7748d7b3035ca4a0a8 /Doc/tools/newind.py
parent8bc965785ee253e22502209b167661df270bc03c (diff)
downloadcpython-568113a75b9b804f8d65e78219db2b2212541647.zip
cpython-568113a75b9b804f8d65e78219db2b2212541647.tar.gz
cpython-568113a75b9b804f8d65e78219db2b2212541647.tar.bz2
Obsolete.
Diffstat (limited to 'Doc/tools/newind.py')
-rwxr-xr-xDoc/tools/newind.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/Doc/tools/newind.py b/Doc/tools/newind.py
deleted file mode 100755
index b3a263b..0000000
--- a/Doc/tools/newind.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /usr/bin/env python
-
-"""Really nasty little script to create an empty, labeled index on stdout.
-
-Do it this way since some shells seem to work badly (and differently) with
-the leading '\b' for the first output line. Specifically, /bin/sh on
-Solaris doesn't seem to get it right. Once the quoting works there, it
-doesn't work on Linux any more. ;-(
-"""
-__version__ = '$Revision$'
-# $Source$
-
-import sys
-
-if sys.argv[1:]:
- label = sys.argv[1]
-else:
- label = "genindex"
-
-print "\\begin{theindex}"
-print "\\label{%s}" % label
-print "\\end{theindex}"