diff options
Diffstat (limited to 'Demo/embed/importexc.c')
-rw-r--r-- | Demo/embed/importexc.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Demo/embed/importexc.c b/Demo/embed/importexc.c deleted file mode 100644 index 59b1d01..0000000 --- a/Demo/embed/importexc.c +++ /dev/null @@ -1,23 +0,0 @@ -#include <Python.h> - -#if 0 -char* cmd = "import codecs, encodings.utf_8, types; print(types)"; -#else -char* cmd = "import types; print(types)"; -#endif - -int main() -{ - printf("Initialize interpreter\n"); - Py_Initialize(); - PyEval_InitThreads(); - PyRun_SimpleString(cmd); - Py_EndInterpreter(PyThreadState_Get()); - - printf("\nInitialize subinterpreter\n"); - Py_NewInterpreter(); - PyRun_SimpleString(cmd); - Py_Finalize(); - - return 0; -} |