summaryrefslogtreecommitdiffstats
path: root/Doc/tools/indfix.py
Commit message (Collapse)AuthorAgeFilesLines
* Delete the LaTeX doc tree.Georg Brandl2007-08-151-100/+0
|
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-2/+2
| | | | | | | | | | Completely get rid of StringIO.py and cStringIO.c. I had to fix a few tests and modules beyond what Christian did, and invent a few conventions. E.g. in elementtree, I chose to write/return Unicode strings whe no encoding is given, but bytes when an explicit encoding is given. Also mimetools was made to always assume binary files.
* Use string methods.Fred Drake2002-10-161-3/+2
|
* Hush the nanny.Fred Drake2000-10-071-24/+24
|
* process(): New function that contains the "orchestration" of theFred Drake1999-03-031-19/+28
| | | | | | | | | actual work. main(): Just handle the command line and filename determination, calling process() to do the work. These changes make this more import-friendly.
* breakable_re: Fix the RE so that module definition entries don't preventFred Drake1998-02-191-1/+2
| | | | combining.
* Minor performance nits.Fred Drake1998-02-101-16/+18
|
* Script to fix up the Library Reference index so it's less ugly. The docstring:Fred Drake1998-02-091-0/+89
"""Combine similar index entries into an entry and subentries. For example: \item {foobar} (in module flotz), 23 \item {foobar} (in module whackit), 4323 becomes \item {foobar} \subitem in module flotz, 23 \subitem in module whackit, 4323 Note that an item which matches the format of a collapsable item but which isn't part of a group of similar items is not modified. """ This results in a much more readable index, with less repitition of text; especially for common method names.