diff options
author | Barry Warsaw <barry@python.org> | 1998-01-27 03:19:00 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-01-27 03:19:00 (GMT) |
commit | 516f18993f97c58f2bb41543bc878b3d7a1338fe (patch) | |
tree | 61e61b1acb96338a5df088ddcfdbf77fa1bb2f56 /Tools | |
parent | abe2a457de09d728ddd0704fc1de855adf263944 (diff) | |
download | cpython-516f18993f97c58f2bb41543bc878b3d7a1338fe.zip cpython-516f18993f97c58f2bb41543bc878b3d7a1338fe.tar.gz cpython-516f18993f97c58f2bb41543bc878b3d7a1338fe.tar.bz2 |
Initial revision
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/pynche/Main.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Tools/pynche/Main.py b/Tools/pynche/Main.py new file mode 100644 index 0000000..25b9aef --- /dev/null +++ b/Tools/pynche/Main.py @@ -0,0 +1,23 @@ +#! /usr/bin/env python + +"""Pynche: The PYthon Natural Color and Hue Editor. + +Pynche is based largely on a similar color editor I wrote years ago for the +Sunview window system. That editor was called ICE: the Interactive Color +Editor. I'd always wanted to port the editor to X but didn't feel like +hacking X and C code to do it. Fast forward many years, to where Python + +Tkinter + Pmw provides such a nice programming environment, with enough +power, that I finally buckled down and implemented it. I changed the name +because these days, too many other systems have the acronym `ICE'. + +Usage: %(PROGRAM) [-h] + +Where: + --help + -h + print this message + +""" + +__version__ = '1.0' + |