From 3d14c9d74ad4caa1e732b82ad62f695c658d4f40 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Mon, 10 Nov 2008 15:27:17 +0100 Subject: [PATCH] Don't install twisted signal handlers, to fix restarting syscalls on SIGCHLD. fixes #48. (hopefully) --- mytest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mytest.py b/mytest.py index b40552cc..88c035ab 100644 --- a/mytest.py +++ b/mytest.py @@ -61,7 +61,7 @@ try: from twisted.internet import reactor def runReactor(): - reactor.run() + reactor.run(installSignalHandlers=False) except ImportError: print "twisted not available" def runReactor(): -- 2.30.2