move dvb-t 5V antenna switching to better place
[enigma2.git] / lib / python / python.cpp
index f467bc86dc7d1a63a4827e72d38c4e5901a7f715..b5ae486486efd5af9a34a529d4b95c0be7ac5dd2 100644 (file)
@@ -1,8 +1,12 @@
 #include <lib/python/python.h>
 #include <lib/base/eerror.h>
+                /* avoid warnigs :) */
+#undef _POSIX_C_SOURCE
+#define _POSIX_C_SOURCE 200112L
 #include <Python.h>
 
 extern "C" void init_enigma();
+extern void bsodFatal();
 
 DEFINE_REF(TestObj);
 
@@ -56,6 +60,8 @@ ePyObject &ePyObject::operator=(void *object)
 
 ePython::ePython()
 {
+//     Py_VerboseFlag = 1;
+       
        Py_Initialize();
        
        init_enigma();
@@ -124,6 +130,7 @@ int ePython::call(PyObject *pFunc, PyObject *pArgs)
                } else
                {
                        PyErr_Print();
+                       bsodFatal();
                }
        }
        return res;