Anyone else has seen "forrtl: error (200) ..."

Tijs tijs_news at artsoftonline.com
Wed May 30 12:25:36 EDT 2007


Alexander Eisenhuth wrote:

> Hello,
> 
> Ctrl+C is not passed to the interpreter (i guess it) while I'm executing a
> script. Instead i get:
> forrtl: error (200): program aborting due to control-C event
> 

I don't know what forrtl is, but I think it is hijacking your SIGINT signal
handler. Python installs an OS-level signal handler that raises the
KeyboardInterrupt in the main thread. If a library installs its own
handler, Python won't catch it.

-- 

Regards,
Tijs



More information about the Python-list mailing list