Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
1bfe9dc871bb3cd6392418410805f0248b1c7d87
/
.
/
Demo
/
embed
/
importexc.c
blob: 375ce1b686954efb15b2e813385b957b297a2c3d [
file
] [
log
] [
blame
]
#include
<Python.h>
char
*
cmd
=
"import exceptions"
;
int
main
()
{
Py_Initialize
();
PyEval_InitThreads
();
PyRun_SimpleString
(
cmd
);
Py_EndInterpreter
(
PyThreadState_Get
());
Py_NewInterpreter
();
PyRun_SimpleString
(
cmd
);
Py_Finalize
();
return
0
;
}