cpython/Tools/pynche
Barry Warsaw f67a50c2e1 Several optimizations:
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.
1998-02-18 00:05:59 +00:00
..
ChipViewer.py Better dimensions 1998-02-11 18:54:23 +00:00
ColorDB.py Cache conversions from triplets to rrggbb's and vice versa. Wasteful 1998-02-18 00:02:26 +00:00
Main.py fixed initial color 1998-02-12 19:53:01 +00:00
PyncheWidget.py Added about dialog 1998-02-17 22:25:23 +00:00
StripViewer.py Several optimizations: 1998-02-18 00:05:59 +00:00
TypeinViewer.py __validate(): test for None-age, not not-ness 1998-02-13 21:29:13 +00:00