wxPython eats Ctrl+C?

It works for me with wxPython 2.8.7.1 (msw-unicode)
and Python 2.5.1 on Windows XP. I'm using wx.PySimpleApp
not wx.App, by the way. I would start with a "Hello World"
app, see if ^C works, then keep adding things until it breaks.

···

At 12:21 PM 8/21/2008, you wrote:

---------- Forwarded message ----------
From: "Josiah Carlson" <josiah.carlson@gmail.com>
To: wxpython-users@lists.wxwidgets.org
Date: Thu, 21 Aug 2008 07:34:27 -0700
Subject: Re: [wxpython-users] wxPython eats Ctrl+C?
I've not experienced the behavior you observed. In Windows, Linux,
and OS X, hitting ctrl+c in the terminal kills Python and wxPython.
You may want to check your signal handlers, and/or create a new
handler for sigint that raises a SystemExit exception, making sure to
set secondary threads as daemonic (if they are being used and if you
haven't done so already).

Pressing Ctrl C in the python shell on Windows does not kill it, it
generates a KeyboardInterrupt exception, and does not terminate the
interpreter.