summaryrefslogtreecommitdiffstats
path: root/Doc/tools/keywords.py
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/tools/keywords.py')
-rw-r--r--Doc/tools/keywords.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/Doc/tools/keywords.py b/Doc/tools/keywords.py
deleted file mode 100644
index 9f32056..0000000
--- a/Doc/tools/keywords.py
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /usr/bin/env python
-
-# This Python program sorts and reformats the table of keywords in ref2.tex
-
-l = []
-try:
- while 1:
- l = l + raw_input().split()
-except EOFError:
- pass
-l.sort()
-for x in l[:]:
- while l.count(x) > 1: l.remove(x)
-ncols = 5
-nrows = (len(l)+ncols-1)/ncols
-for i in range(nrows):
- for j in range(i, len(l), nrows):
- print l[j].ljust(10),
- print