Thanks Robert, I just poked around and found a PythonWin web page:
http://aspn.activestate.com/ASPN/docs/ActivePython/2.3/pywin32/html/pythonwin/readme.html
>From other links it appears that SciTE was based on PythonWin, and not
the other way around. For people coding in other languages besides
Thanks for the SciTE info, Neil.
Yes, it was silly of me to forget to state that I'm using Win32.
Normally, when I post to comp.lang.python, I remember to include that
fact... :^P
+-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-+
| Ladasky Home Solar, Inc.: blowing sunshine up your
John Ladasky wrote:
> Hi there.
>
> The following minimal code in Python 2.3.4 works under Idle v. 1.0.3,
> but not under SciTE v. 1.66:
>
> from time import sleep
> try:
> while True:
> sleep(0.25)
> print ".",
> except KeyboardInterrupt:
> print "\nKeyboard interrupt rec
John Ladasky:
> Under SciTE, I do not get my "exiting program" message. Instead, I get
> the standard SciTE abort message:
>
>
>> Process failed to respond; forcing abrupt termination...
>> Exit code: 1
>
>
> I much prefer the SciTE environment to Idle. Is there any way that I
> can rewrite