Re: using filedescriptors in SIGINT signal handler
[EMAIL PROTECTED] wrote: > If you're talking about a Python function registered as a handler by > signal.signal, then there should not be any restrictions on what you do > in that function. > > Here's a small program I wrote: > #-
Re: using filedescriptors in SIGINT signal handler
If you're talking about a Python function registered as a handler by signal.signal, then there should not be any restrictions on what you do in that function. Here's a small program I wrote: # import os, signal, time def h(*a
