Commit f9abaf42 authored by Barry Warsaw's avatar Barry Warsaw

Simple embedded program that does a module import. Useful for

debugging leaks and other memory problems.
parent 2df3c41e
#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;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment