summaryrefslogtreecommitdiffstats
path: root/Demo/embed/importexc.c
blob: 375ce1b686954efb15b2e813385b957b297a2c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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;
}