Python:使用编译/评估时出现分段错误

时间:2011-07-21 15:42:15

标签: python compilation segmentation-fault cpython pypy

代码:

import ast

globalsDict = {}

fAst = ast.FunctionDef(
    name="foo",
    args=ast.arguments(args=[], vararg=None, kwarg=None, defaults=[]),
    body=[], decorator_list=[])

exprAst = ast.Interactive(body=[fAst])
ast.fix_missing_locations(exprAst)
compiled = compile(exprAst, "<foo>", "single")
eval(compiled, globalsDict, globalsDict)

print globalsDict["foo"]

对于CPython和PyPy,我都遇到了分段错误。为什么呢?


1 个答案:

答案 0 :(得分:5)

我猜你的函数定义不能有空体。我通过添加一个no-op语句作为函数体来测试你的代码:

fAst = ast.FunctionDef(
    # ...
    body=[ast.Pass()],
    # ...

分段错误消失了;输出是:

<function foo at 0x022DB3F0>

如果我是正确的,这可能是ast模块中的错误,因为它应该检查空体。