Python quirks

Waiting For A Signal

Last week I found an interesting issue in my application. I noticed that my application cannot listen to signals. After debugging it a few days, I found out that it's related to the use of "threading.Event" in the main thread when waiting. side-note: I run python2.7 on Ubuntu 16. It was fixed in python3.6. As… Continue reading Waiting For A Signal