I\'ve been experimenting with embedding different scripting languages in a C++ application, currently I\'m trying Stackless Python 3.1. I\'ve tried several tutorials and exa
And what about this solution:
Py_SetProgramName(argv[0]); Py_Initialize(); PyRun_SimpleString("execfile(\"ex30.py\")"); Py_Finalize();
Where ex30.py it the name of the python script I am running.
ex30.py