如何从C扩展引发Python异常?
对于上述模块,我们需要准备以下setup.py脚本-
from distutils.core import setup, Extensionsetup(name='helloworld', version='1.0', \
ext_modules=[Extension('helloworld', ['hello.c'])])
现在,我们使用以下命令,
$ python setup.py install
安装扩展后,我们将能够在Python脚本test.py中导入并调用该扩展,并在其中捕获异常,如下所示-
#test.pyimport helloworld
try:
print helloworld.helloworld()
except Exception as e:
print str(e)
这将产生以下结果-
bad format char passed to Py_BuildValue
以上是 如何从C扩展引发Python异常? 的全部内容, 来源链接: utcz.com/z/322300.html