gpt4 book ai didi

c++ - PyRun_SimpleString 因 def foo() : 而失败

转载 作者:行者123 更新时间:2023-11-30 02:57:00 26 4
gpt4 key购买 nike

对于名称/路径中包含 unicode (widechar) 的文件,我无法让 PyRun_SimpleFile 工作(FILE* 兼容性问题),因此出现了这个问题!

因此,我决定自己打开 python 脚本,然后使用 PyRun_SimpleString 执行每一行。

此处显示伪代码。

wchar_t* pWScriptName=NULL;
// pWScriptName malloced & populated here
FILE* fp = _wfopen(pWScriptName, L"r");
while (fgets(line, BUFSIZ, fp) != NULL) {
int ret = PyRun_SimpleString(line);
if(ret != 0) {
... error at lineNum ...
}
lineNum++;
}

上面给出了下面 def 语句的错误(<-- 如下所示)

Python版本为2.7

import os
print "hello"
def foo(): # <-- PyRun_SimpleString fails here
print "hello again"

我想用它来显示脚本的行号,如果/它失败了。许多其他人似乎使用 PyRun_SimpleString 取得了成功!

提前致谢。

最佳答案

在这种情况下您不会使用 PyRun_SimpleString,因为它希望在一行中读取整个程序,而您将其分成多行。

你应该只使用 PyRun_SimpleFile(fileReference, scriptPath)

注意:您需要创建全局对象和局部对象才能使上述工作正常进行。

See this

关于c++ - PyRun_SimpleString 因 def foo() : 而失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14968119/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com