Use Py_InitializeEx(0) instead of Py_Initialize,
to prevent Python from installing its own signal 
handlers.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@132492 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/ScriptInterpreterPython.cpp b/source/Interpreter/ScriptInterpreterPython.cpp
index 3736991..9ff176f 100644
--- a/source/Interpreter/ScriptInterpreterPython.cpp
+++ b/source/Interpreter/ScriptInterpreterPython.cpp
@@ -1540,7 +1540,7 @@
     }
 
     PyEval_InitThreads ();
-    Py_Initialize ();
+    Py_InitializeEx (0);
 
     PyObject *compiled_module = Py_CompileString (embedded_interpreter_string, 
                                                   "embedded_interpreter.py",