код (Отобразить)CODE:
string tem;
// test();
if(runpython()==0){goto ex;}
if(runfilepython("C:\test.py")==0){goto ex;}
tem=getpython();
messagebox(tem);
function test()
{if(runpython()==0){return -1;}
__python_sync
a = '#'
__end_python
ot=sendgetpython("a");
messagebox(ot);
goto global ex;
}
ex: closepython();
Содержание test.py:
a = '#'
Если запускать файл, то -
File "<stdin>", line 1
a = '
^
SyntaxError: EOL while scanning string literal
Kibor, можно исправить?