[Pythonmac-SIG] Re: [wxPython-mac] MachoPython eats Ctrl-C?

Just van Rossum just@letterror.com
Thu, 16 May 2002 12:50:17 +0200


Jack Jansen wrote:

> If this behaviour can be disabled I would guess it will be 
> through the Carbon Event Manager, so maybe you should start 
> looking there.

My guess would be that it's the OS that sends a SIGINT, and that Python converts
it to a KeyboardInterrupt. So maybe it's a matter of overriding the SIGINT
handler with a noop?

Just