symbian-qemu-0.9.1-12/python-2.6.1/Demo/embed/importexc.c
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 #include <Python.h>
       
     2 
       
     3 char* cmd = "import exceptions";
       
     4 
       
     5 int main()
       
     6 {
       
     7 	Py_Initialize();
       
     8 	PyEval_InitThreads();
       
     9 	PyRun_SimpleString(cmd);
       
    10 	Py_EndInterpreter(PyThreadState_Get());
       
    11 
       
    12 	Py_NewInterpreter();
       
    13 	PyRun_SimpleString(cmd);
       
    14 	Py_Finalize();
       
    15 
       
    16 	return 0;
       
    17 }