From a5fb6b7509237e55324e52b1ae081c54d073eef2 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Thu, 17 Oct 2013 20:16:44 -0700 Subject: [PATCH] Removing unsupported signal() calls on Windows SIGQUIT and SIGHUP are not supported. For details, see Python docs: http://docs.python.org/2/library/signal.html#signal.signal --- python/ycm/server/ycmd.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/ycm/server/ycmd.py b/python/ycm/server/ycmd.py index 4d75f351..350eabe6 100755 --- a/python/ycm/server/ycmd.py +++ b/python/ycm/server/ycmd.py @@ -43,9 +43,7 @@ def SetUpSignalHandler(): handlers.ServerShutdown() for sig in [ signal.SIGTERM, - signal.SIGINT, - signal.SIGHUP, - signal.SIGQUIT ]: + signal.SIGINT ]: signal.signal( sig, SignalHandler )