Possible Duplicate:
How do you create a daemon in Python?
I am looking at a way to create long lived processes in Python . By long lived i mean processes that ignore signal handlers, are disassociated from the controlling terminal, etc.
Python's threading module has the ability to create daemon threads although i cannot find confirmation if these daemon threads can behave as the long living process.