Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: d724296fc3f0e2f07e0d75f116344ef7f1f72021 authored by Barry Warsaw on 23 August 2010, 23:37:56 UTC
2.6.6 final. \o/
Tip revision: d724296
importexc.c
#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;
}
back to top