Thread: Linux Query
View Single Post
  (#2 (permalink)) Old
Webby Alisha Offline
New Member
 
Posts: 2
Join Date: Mar 2009
Model: 7100T
PIN: N/A
Carrier: Webmaster
Default 03-30-2009, 02:00 AM

Quote:
Originally Posted by Gracey View Post
Hello,
I was wondering how i catch various signals in nix python so i can exit my programs gracefully? Please reply my post if you know the answer.

Thanks
Simply "import signal", and see document ion of that module. But bear in mind that signals are weird with Python. The atomic unit of Python execution can span a C external function call, and that can take an indefinitely long time. So delivery of signals at the Python level can be delayed.
   
Reply With Quote