Python signal don't work even on Cygwin?

python, signals, windows

Solution

`SIGALRM` doesn't work in Windows. From the documentation:

On Windows, signal() can only be called with SIGABRT, SIGFPE, SIGILL, SIGINT, SIGSEGV, or SIGTERM. A ValueError will be raised in any other case.

This question addresses the topic of getting a `SIGALRM` equivalent in Windows. And this question is also similar.

Problem

Python signal doesn't seem to work on Windows even if I run the python script inside Cygwin. I'm getting the `AttributeError: 'module' object has no attribute SIGALRM` Is there a way to go around this on Windows. I'm just running the example at the end of http://docs.python.org/2/library/signal.html

Original source

Related problems