Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use re instead of regex. | Guido van Rossum | 1999-04-09 | 1 | -10/+11 |
| | | | | | Don't rewrite the file in place. (Reported by Andy Dustman.) | ||||
* | For reasons I dare not explain, this script should always execute | Guido van Rossum | 1999-04-02 | 1 | -2/+1 |
| | | | | main() when imported (in other words, it is not usable as a module). | ||||
* | Tim Peters writes: | Guido van Rossum | 1999-03-28 | 1 | -24/+53 |
| | | | | | | | | I should have waited overnight <wink/sigh>. Nothing wrong with the one I sent, but I couldn't resist going on to add new -r1 / -r2 cmdline options for recreating the original files from ndiff's output. That's attached, if you're game! Us Windows guys don't usually have a sed sitting around <wink>. | ||||
* | Tim Peters writes: | Guido van Rossum | 1999-03-27 | 1 | -160/+88 |
| | | | | | | | Attached is a cleaned-up version of ndiff (added useful module docstring, now echo'ed in case of cmd line mistake); added -q option to suppress initial file identification lines; + other minor cleanups, & a slightly faster match engine. | ||||
* | During display, if EPIPE is raised, it's probably because a pager was | Fred Drake | 1999-03-26 | 1 | -3/+8 |
| | | | | killed. Discard the error in that case, but propogate it otherwise. | ||||
* | Added a -q ('quiet') option to tabnanny, which causes only the names of | Andrew M. Kuchling | 1998-12-18 | 1 | -3/+7 |
| | | | | offending files to be printed. Good for emacs `tabnanny.py *.py` | ||||
* | Patch by Chris Herborth: | Guido van Rossum | 1998-12-17 | 1 | -1/+7 |
| | | | | | BeOS headers live in various non-standard places; luckily, there's an environment variable that lists them all. | ||||
* | Detlef Lannert lannert@lannert.rz.uni-duesseldorf.de notices: | Guido van Rossum | 1998-10-20 | 1 | -1/+4 |
| | | | | | | | | | """ the NEWS file of Python 1.5.2a2 inspired me to look at Tools/scripts/untabify.py. I wonder why it accepts a -t argument but ignores it. The following patch tries to make it somewhat useful (i.e., to override the tabsize=8 setting). Is that agreeable? """ | ||||
* | New version that is much more compact and easier to maintain. (Sjoerd) | Guido van Rossum | 1998-10-09 | 1 | -239/+124 |
| | |||||
* | Fix multi-arg list.append() calls. | Guido van Rossum | 1998-10-08 | 3 | -9/+9 |
| | |||||
* | Added a whole bunch of descriptions. | Guido van Rossum | 1998-10-07 | 1 | -0/+11 |
| | |||||
* | Use the imp module to get the magic word. | Guido van Rossum | 1998-10-07 | 1 | -6/+2 |
| | |||||
* | Added #! line | Guido van Rossum | 1998-10-07 | 1 | -0/+1 |
| | |||||
* | Print serious errors to stderr instead of stdout. | Guido van Rossum | 1998-09-14 | 1 | -4/+11 |
| | |||||
* | nannified | Guido van Rossum | 1998-09-14 | 1 | -885/+885 |
| | |||||
* | nannified | Guido van Rossum | 1998-09-14 | 1 | -17/+17 |
| | |||||
* | nannified. | Guido van Rossum | 1998-09-14 | 1 | -8/+8 |
| | |||||
* | Utility to replace CRLF with LF in argument files. | Guido van Rossum | 1998-09-14 | 1 | -0/+19 |
| | |||||
* | Utility to replace LF with CRLF in argument files. | Guido van Rossum | 1998-09-14 | 1 | -0/+19 |
| | |||||
* | Utility to untabify stubber results. | Guido van Rossum | 1998-09-14 | 1 | -0/+50 |
| | |||||
* | New tool: reverse grep (greps from the end). Uses a fairly efficient | Guido van Rossum | 1998-08-12 | 1 | -0/+65 |
| | | | | strategy to read from the end of the file. | ||||
* | A script by Mark-Andre Lemburg to produce the PC/python_nt.def file | Guido van Rossum | 1998-08-10 | 1 | -0/+102 |
| | | | | automatically. | ||||
* | # The variable total is never used somehow. I think I had plans for | Guido van Rossum | 1998-07-02 | 1 | -2/+2 |
| | | | | # it but can't remember what. Get rid of a comparison that breaks. | ||||
* | Fix by Sjoerd Mullender to support symbolic links and make a backup of | Guido van Rossum | 1998-06-29 | 1 | -56/+80 |
| | | | | | | | | .mirrorinfo. Fix by me to call string.lstrip(filename) to cope with a bug in strop.strip() in Python 1.4. Additionally, I changed all print statements that print filenames etc. to put them in backquotes so that it will be more obvious when there's a funny character on one of them (such as a space...). | ||||
* | Translated to use re instead of regex. Also replaced one use of | Guido van Rossum | 1998-06-19 | 1 | -33/+45 |
| | | | | L.append(a,b,c,d) with the correct L.append((a,b,c,d)). | ||||
* | From: "Tim Peters" <tim_one@msn.com> | Guido van Rossum | 1998-06-09 | 1 | -3/+9 |
| | | | | | | | | | | The 1.5.1 tabnanny.py suffers an assert error if fed a script whose last line is both indented and lacks a newline: if 1: print 'oh fudge' # no newline here: The attached version repairs that. | ||||
* | OK, here's a different way to implement the same thing -- this version | Guido van Rossum | 1998-05-12 | 1 | -6/+6 |
| | | | | also supports filenames with multiple spaces in their name :-) | ||||
* | Support filenames with spaces in their names (for non-Mac ftp servers). | Guido van Rossum | 1998-05-12 | 1 | -2/+2 |
| | | | | | | | | | | This patch must hold the world record for living in my inbox: From: John Ehresman <jehresma@dsg.harvard.edu> Date: Wed, 23 Aug 1995 16:07:11 -0400 He provided a fix for the version that comes with Python 1.3: ftpmirror.py revision 1.1... And it was still relevant! | ||||
* | Add the specific sed statement to recover the second output file to | Guido van Rossum | 1998-05-08 | 1 | -1/+6 |
| | | | | the comments. | ||||
* | Adding Tim Peters' ndiff utility. | Guido van Rossum | 1998-05-06 | 1 | -0/+667 |
| | | | | | This is handy for comparing plain-text documentation files, since it displays intra-line differences. | ||||
* | typo in error message (fname vs. file). | Guido van Rossum | 1998-04-28 | 1 | -1/+1 |
| | | | | (Jack) | ||||
* | Use the (new) standard script #! line | Barry Warsaw | 1998-04-23 | 1 | -28/+51 |
| | | | | | | Convert to re module; remove all references to regexp and regsub Added support for the new texinfo @url{} and @email{} commands | ||||
* | Tim's version 4, with my mods | Guido van Rossum | 1998-04-10 | 1 | -14/+6 |
| | |||||
* | Add usage message when no arguments. | Guido van Rossum | 1998-04-06 | 2 | -0/+8 |
| | |||||
* | Tim's latest version (supports old and new tokenize modules) | Guido van Rossum | 1998-04-06 | 1 | -77/+128 |
| | |||||
* | Tim Peters' program for checking whether a program's indentation is | Guido van Rossum | 1998-03-31 | 1 | -0/+302 |
| | | | | | sensitive to tab size. Uses a different strategy than tabpolice.py, but has compatible usage. | ||||
* | Add -q option that *just* prints the filename. | Guido van Rossum | 1998-03-26 | 1 | -7/+13 |
| | |||||
* | give in to tab police | Guido van Rossum | 1998-03-24 | 6 | -435/+440 |
| | |||||
* | Report first line with inconsistent tab usage. | Guido van Rossum | 1998-03-24 | 1 | -4/+24 |
| | |||||
* | The Tab Police watches for possibly inconsistent indentation. | Guido van Rossum | 1998-03-20 | 1 | -0/+74 |
| | |||||
* | Dangerous feature added: when removing local files (i.e., only when -r | Guido van Rossum | 1998-01-04 | 1 | -25/+50 |
| | | | | | | is used), do a recursive delete. Use -r with even more caution! Also changed usage message into a doc string, added a comment or two, and rearranged a long line. | ||||
* | Added "-n file" option to only print files newer than the given file. | Guido van Rossum | 1997-11-24 | 1 | -4/+37 |
| | |||||
* | When checking for equality, open the slave file in text mode so it | Guido van Rossum | 1997-11-04 | 1 | -2/+6 |
| | | | | | | | | will compare equal even if the master file uses only \n to terminate lines (this is by far the most common situation). Also, check for the case where the master file is missing, and print the time difference in seconds when the slave file appears newer than the master (for debugging). | ||||
* | Remove "." or "" from front of sys.path (this bit me once). | Guido van Rossum | 1997-10-20 | 1 | -0/+3 |
| | |||||
* | Fix comment to add the all-important trailing colon to the example. | Guido van Rossum | 1997-10-06 | 1 | -9/+16 |
| | | | | Print the author with the revision date and filename. | ||||
* | Moved pystone to Lib/test. Use import test.pystone to run it. | Guido van Rossum | 1997-09-16 | 2 | -249/+0 |
| | |||||
* | Skip symlinks; don't bother keeping a list of files that is never used. | Guido van Rossum | 1997-09-16 | 1 | -5/+2 |
| | |||||
* | Use correct keyword parameter when calling copy with answer option! | Guido van Rossum | 1997-08-18 | 1 | -2/+2 |
| | |||||
* | Oops, there was a bug in the output formatting - the last printed | Guido van Rossum | 1997-08-14 | 1 | -2/+2 |
| | | | | values would overwrite the next value. | ||||
* | Added logmerge.py | Guido van Rossum | 1997-08-14 | 1 | -0/+1 |
| |