diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-18 06:25:50 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-18 06:25:50 (GMT) |
commit | 3d7d372ce326602b274f44338168688eeb907a3b (patch) | |
tree | 221b3b3ae862fe0b1d068efb97700b55bf0018cf /Doc/tools | |
parent | 182b5aca27d376b08a2904bed42b751496f932f3 (diff) | |
download | cpython-3d7d372ce326602b274f44338168688eeb907a3b.zip cpython-3d7d372ce326602b274f44338168688eeb907a3b.tar.gz cpython-3d7d372ce326602b274f44338168688eeb907a3b.tar.bz2 |
Whitespace normalization, via reindent.py.
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/custlib.py | 16 | ||||
-rw-r--r-- | Doc/tools/keywords.py | 14 | ||||
-rw-r--r-- | Doc/tools/prechm.py | 4 | ||||
-rwxr-xr-x | Doc/tools/sgmlconv/latex2esis.py | 2 |
4 files changed, 18 insertions, 18 deletions
diff --git a/Doc/tools/custlib.py b/Doc/tools/custlib.py index 7898928..15f07ba 100644 --- a/Doc/tools/custlib.py +++ b/Doc/tools/custlib.py @@ -10,20 +10,20 @@ modules = {} for modname in sys.builtin_module_names: modules[modname] = modname - + for dir in sys.path: # Look for *.py files filelist = glob.glob(os.path.join(dir, '*.py')) - for file in filelist: + for file in filelist: path, file = os.path.split(file) base, ext = os.path.splitext(file) modules[base.lower()] = base # Look for shared library files - filelist = (glob.glob(os.path.join(dir, '*.so')) + + filelist = (glob.glob(os.path.join(dir, '*.so')) + glob.glob(os.path.join(dir, '*.sl')) + glob.glob(os.path.join(dir, '*.o')) ) - for file in filelist: + for file in filelist: path, file = os.path.split(file) base, ext = os.path.splitext(file) if base[-6:] == 'module': @@ -54,7 +54,7 @@ modules = mlist # Phase III: write custlib.tex # Write the boilerplate -# XXX should be fancied up. +# XXX should be fancied up. print """\documentstyle[twoside,11pt,myformat]{report} \\title{Python Library Reference} \\input{boilerplate} @@ -69,10 +69,10 @@ print """\documentstyle[twoside,11pt,myformat]{report} \\pagebreak {\\parskip = 0mm \\tableofcontents} \\pagebreak\\pagenumbering{arabic}""" - -for modname in mlist: + +for modname in mlist: print "\\input{lib%s}" % (modname,) - + # Write the end print """\\input{custlib.ind} % Index \\end{document}""" diff --git a/Doc/tools/keywords.py b/Doc/tools/keywords.py index 876987d..9f32056 100644 --- a/Doc/tools/keywords.py +++ b/Doc/tools/keywords.py @@ -4,16 +4,16 @@ l = [] try: - while 1: - l = l + raw_input().split() + while 1: + l = l + raw_input().split() except EOFError: - pass + pass l.sort() for x in l[:]: - while l.count(x) > 1: l.remove(x) + 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 + for j in range(i, len(l), nrows): + print l[j].ljust(10), + print diff --git a/Doc/tools/prechm.py b/Doc/tools/prechm.py index 09c2c43..7b2f393 100644 --- a/Doc/tools/prechm.py +++ b/Doc/tools/prechm.py @@ -438,8 +438,8 @@ def openfile(file): return p def usage(): - print usage_mode - sys.exit(0) + print usage_mode + sys.exit(0) def do_it(args = None): if not args: diff --git a/Doc/tools/sgmlconv/latex2esis.py b/Doc/tools/sgmlconv/latex2esis.py index b30aaa5..643ef2c 100755 --- a/Doc/tools/sgmlconv/latex2esis.py +++ b/Doc/tools/sgmlconv/latex2esis.py @@ -11,7 +11,7 @@ passed to the convert() function; changing this table can allow this tool to support additional LaTeX markups. The format of the table is largely undocumented; see the commented -headers where the table is specified in main(). There is no provision +headers where the table is specified in main(). There is no provision to load an alternate table from an external file. """ |