summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Add -q option that *just* prints the filename.Guido van Rossum1998-03-261-7/+13
|
* give in to tab policeGuido van Rossum1998-03-246-435/+440
|
* Report first line with inconsistent tab usage.Guido van Rossum1998-03-241-4/+24
|
* The Tab Police watches for possibly inconsistent indentation.Guido van Rossum1998-03-201-0/+74
|
* Big changes by Mark Hammond to support freezing with DLLs on Windows.Guido van Rossum1998-03-204-47/+201
|
* update while dragging defaults to 0Barry Warsaw1998-03-171-1/+1
|
* No update while dragging still tracks the arrowsBarry Warsaw1998-03-171-36/+59
|
* Get rid of EntrywidgetBarry Warsaw1998-03-161-14/+0
|
* Add option for no updates on typingBarry Warsaw1998-03-161-1/+3
|
* Add option for no updates on draggingBarry Warsaw1998-03-161-11/+9
|
* Use the new PyncheOptions widgetBarry Warsaw1998-03-161-8/+30
|
* example output is differentBarry Warsaw1998-03-131-6/+7
|
* Typos in the docstring fixed by Detlef LannertBarry Warsaw1998-03-131-3/+3
| | | | <lannert@uni-duesseldorf.de>
* Added URL for UKBarry Warsaw1998-03-121-0/+2
|
* Added a hack to deal with common practice 'uk' for United KingdomBarry Warsaw1998-03-121-0/+7
|
* Use RCS revisionsBarry Warsaw1998-03-111-3/+3
|
* Updated the docstringBarry Warsaw1998-03-111-6/+17
|
* Added reverse lookupBarry Warsaw1998-03-111-33/+94
|
* Integrate with OptionsWindow... need to hook into Tab keyBarry Warsaw1998-03-101-5/+19
|
* Integrate with OptionsWindow... not sure it should be modalBarry Warsaw1998-03-101-6/+26
|
* CosmeticBarry Warsaw1998-03-101-7/+7
|
* Add quotes around some variable definitions; add a "clean" target.Guido van Rossum1998-03-071-5/+10
|
* Adapted to the new situation.Guido van Rossum1998-03-071-39/+71
|
* Rearrange some stuff so that the warning for unknown modules is alsoGuido van Rossum1998-03-071-17/+21
| | | | issued on Windows.
* When writing the Windows Makefile, don't forget to strip some filenamesGuido van Rossum1998-03-071-2/+3
| | | | of their output directory prefix.
* Got rid of the last tab character in this file.Guido van Rossum1998-03-061-1/+1
|
* Always set the __file__ attribute, so dynamic link modules are indicated.Guido van Rossum1998-03-061-1/+1
|
* Fix typo -- -e takes a flag, -h doesn't. Somehow the colon and the hGuido van Rossum1998-03-061-1/+1
| | | | got transposed.
* Use a better way to bind the checkext instance variable to a checkGuido van Rossum1998-03-051-9/+8
| | | | | button widget, not involving a __getattr__() method but a callback on the widget.
* Unfold some lines that were previously folded but don't need to beGuido van Rossum1998-03-051-7/+12
| | | | | | | | now we're reindented. Remove files before renaming something to them -- for Windows. Change check for Python home directory so it works correct on Windows.
* Reindented, removed tabs.Guido van Rossum1998-03-051-18/+24
| | | | Also added simple "clean" target (removes *.o and executable).
* Oops, bug omission: also scan internal code objects for imports!Guido van Rossum1998-03-051-31/+37
|
* Reindented, removed tabs.Guido van Rossum1998-03-052-312/+320
|
* Some nits...Guido van Rossum1998-03-051-8/+9
| | | | | | | | Add the script directory to the path. Fix the sanity checks on the arguments so they don't mess up the -m option; remove the requirement that the script must have a .py extension.
* Added support for packages.Guido van Rossum1998-03-054-199/+438
| | | | | | | We have a whole new module finder that uses the actual Python parser and scans the bytecode for IMPORT_NAME and IMPORT_FROM. This requires some support in import.c (that hasn't been checked in). New command line options for this: -d, -q, -m.
* Untested changes to make the '-s windows' optionGuido van Rossum1998-03-042-0/+17
| | | | work on Windows.
* Patches from Jack for new Apple headersGuido van Rossum1998-02-233-6/+36
|
* Adapt to new webchecker structure. Due to better structure ofGuido van Rossum1998-02-211-59/+33
| | | | | getpage(), much less duplicate code is needed -- we only need to override readhtml().
* Major overhaul. Don't use global variable (e.g. verbose); useGuido van Rossum1998-02-211-130/+191
| | | | | | | instance variables. Make all global functions methods, for easy overriding. Restructure getpage() for easy overriding. Add save_pickle() method and load_pickle() global function to make it easier for other programs to emulate the toplevel interface.
* Change default RCS bin directory to /usr/local/bin/.Guido van Rossum1998-02-191-1/+1
|
* rrggbb_to_triplet(), triplet_to_rrggbb(): Improvements given by GvRBarry Warsaw1998-02-181-8/+3
|
* Very modest improvementsBarry Warsaw1998-02-181-27/+31
|
* Get rid of commented out, slower versionsBarry Warsaw1998-02-181-14/+0
|
* Implementation using TCLPROC loaded into the Tcl interpreterBarry Warsaw1998-02-181-10/+32
|
* __modified(): Make sure `rgbs' is a tupleBarry Warsaw1998-02-181-1/+1
|
* Several optimizations:Barry Warsaw1998-02-181-51/+81
| | | | | | | | | | | | | self.__chips now contains the list of rgbtuple values for the chips named i - 1 (Tkinter counts from 1, we count from zero). The chip number was just the index + 1. This means color lookup need not do an itemcget(), it can just index into __chips. instead of calling __canvas.itemconfigure(), we glom up a huge Tcl script and call tk.eval() directly. Actually we do many appends to a Python list, then string.join() them together into one huge string. This reduces the overhead of Tkinter but making one fast call to Tcl.
* Cache conversions from triplets to rrggbb's and vice versa. WastefulBarry Warsaw1998-02-181-13/+22
| | | | | on space, but improves performance. Also use map to calculate triplet_to_pmwrgb().
* Added about dialogBarry Warsaw1998-02-171-4/+60
|
* Added chip selection stuff, strip labelBarry Warsaw1998-02-171-8/+40
|