summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Rewrite to support multiple suckers, each with their own thread.Guido van Rossum1998-07-081-102/+140
|
* Instead of printint, use self.message() or self.note().Guido van Rossum1998-07-082-72/+63
|
* Minor change for windows; set extensions_c later and setGuido van Rossum1998-07-071-1/+3
| | | | frozendllmain_c at the right place.
* # Bump version because of checkin to faqwiz.py. :-(Guido van Rossum1998-07-071-1/+1
|
* Don't add <...> around mail addresses; they may already be there.Guido van Rossum1998-07-071-1/+1
|
* # The variable total is never used somehow. I think I had plans forGuido van Rossum1998-07-021-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 ofGuido van Rossum1998-06-291-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 ofGuido van Rossum1998-06-191-33/+45
| | | | L.append(a,b,c,d) with the correct L.append((a,b,c,d)).
* # This is a new module I wrote over the weekend. Again, you missed theGuido van Rossum1998-06-151-16/+37
| | | | | | | # checkin email because my PC doesn't have the "Mail" command. Add threading (now that it works). Also some small adaptations to Unix again.
* Primitive GUI for websucker.Guido van Rossum1998-06-151-0/+185
|
* Fix the way a trailing / is changed to /index.html so that itGuido van Rossum1998-06-151-2/+3
| | | | doesn't depend on the value of os.sep. (I.e. ported to Windows :-)
* sort the urls in the todo listGuido van Rossum1998-06-151-1/+3
|
* Jonathan Giddy:Guido van Rossum1998-06-121-1/+2
| | | | | This second problem only shows up if LDLAST is not an empty string (such as with threads enabled on DEC Alphas).
* Jonathan Giddy:Guido van Rossum1998-06-121-1/+4
| | | | | The first one only shows up if $prefix != $exec_prefix, and the problem is caused by the recent change in location for config.h.
* From: "Tim Peters" <tim_one@msn.com>Guido van Rossum1998-06-092-6/+18
| | | | | | | | | | 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.
* Don't die if win32api doesn't exist.Guido van Rossum1998-05-261-1/+6
|
* Fix a dumb typo in the revparse() regular exception: {1-4} should be {1,4}.Guido van Rossum1998-05-221-1/+1
| | | | Now you can click on revisions and diffs again!
* whrandom -> randomGuido van Rossum1998-05-201-2/+2
|
* Additions for Mark Hammond's Win32 specific hacks.Guido van Rossum1998-05-193-0/+398
|
* Add a feature to support specifying an additional search directory forGuido van Rossum1998-05-181-17/+30
| | | | | | packages. (Mark Hammond) Folded some long lines.
* Remove Emacs cruft.Guido van Rossum1998-05-183-12/+0
|
* Add a feature to support specifying an additional search directory forGuido van Rossum1998-05-181-4/+17
| | | | | | packages. (Mark Hammond) Remove Emacs cruft.
* OK, here's a different way to implement the same thing -- this versionGuido van Rossum1998-05-121-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 Rossum1998-05-121-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 toGuido van Rossum1998-05-081-1/+6
| | | | the comments.
* Adding Tim Peters' ndiff utility.Guido van Rossum1998-05-061-0/+667
| | | | | This is handy for comparing plain-text documentation files, since it displays intra-line differences.
* After variable expansion, what was formerly a single word can nowGuido van Rossum1998-05-061-7/+8
| | | | | | contain multiple words, all of which may have to be joined with the path of the extension directory. (Sjoerd)
* Remove Emacs cruft at end.Guido van Rossum1998-05-061-4/+0
|
* accept * in return value type and convert it to _ptr after theGuido van Rossum1998-04-281-1/+2
| | | | | typename, as in argument types. (Jack)
* Style and StyleParameter are two different types.Guido van Rossum1998-04-281-1/+1
| | | | (Jack)
* class ByAddressType, a simple Type but passed by address even onGuido van Rossum1998-04-281-0/+7
| | | | | input. (Jack)
* typo in error message (fname vs. file).Guido van Rossum1998-04-282-2/+2
| | | | (Jack)
* Use a try-except so that the pickle file is written even when we dieGuido van Rossum1998-04-271-14/+18
| | | | because of an unexpected exception.
* Use the (new) standard script #! lineBarry Warsaw1998-04-231-28/+51
| | | | | | Convert to re module; remove all references to regexp and regsub Added support for the new texinfo @url{} and @email{} commands
* Freeze assumes that all built-in modules are part of the Python core.Guido van Rossum1998-04-231-4/+6
| | | | | | | This is not necessarily the case. It is possible to create a Python binary which contains built-in extension modules. Therefore checkextensions should be used for all unknown and builtin modules. (Sjoerd Mullender)
* If freezing with the -O option, the optimized bytecode files areGuido van Rossum1998-04-231-0/+4
| | | | | | used. It is useful to implicitly set the -O flag in the frozen application. (Sjoerd Mullender)
* When using extention modules, relative path names that occur in theGuido van Rossum1998-04-231-0/+2
| | | | | | | Setup file are fixed so that they will work from the freeze build directory. However, relative path names in liner -L and -R options are not fixed in this way. (Sjoerd Mullender)
* Shouldn't import addpack!Guido van Rossum1998-04-201-1/+0
|
* Change the example of what's in scripts/.Guido van Rossum1998-04-101-3/+3
|
* tabnanny stuffGuido van Rossum1998-04-104-507/+508
|
* Tim's version 4, with my modsGuido van Rossum1998-04-102-28/+12
|
* This really needs python 1.5 now...Guido van Rossum1998-04-081-1/+1
|
* Add usage message when no arguments.Guido van Rossum1998-04-063-0/+12
|
* Tim's latest version (supports old and new tokenize modules)Guido van Rossum1998-04-062-154/+256
|
* Give in to tabnannyGuido van Rossum1998-04-066-1041/+850
|
* Version 1.0 is official!Guido van Rossum1998-04-062-3/+6
|
* Untabified, for tabnanny.Guido van Rossum1998-04-061-593/+593
|
* Reindented without tabs and with uniform 4 space indent.Guido van Rossum1998-04-061-36/+36
|
* posix->os.Guido van Rossum1998-04-031-3/+3
|
* Tim Peters' program for checking whether a program's indentation isGuido van Rossum1998-03-312-0/+604
| | | | | sensitive to tab size. Uses a different strategy than tabpolice.py, but has compatible usage.