Properly Handling the Keyboard Interrupt Exception (SIGINT) within a Python C Module
Recently I’ve done a lot of work requiring heavy computation on large datasets. While python is not a great choice for speed, it can be extended by modules written in C for those speed critical moments. For such moments I always try to find solutions written as C modules …
more ...