gpt4 book ai didi

python - 如何从 Python 的 CFFI 访问 errno?

转载 作者:太空宇宙 更新时间:2023-11-04 01:05:21 25 4
gpt4 key购买 nike

我正在使用 cffi 包装一个使用 errno 返回错误值的库。

如何从 cffi 读取 errno

最佳答案

参见文档 https://cffi.readthedocs.org/en/release-0.6/

ffi.errnocffi.FFI 对象的一个​​属性。

例如

from cffi import FFI    
ffi = FFI()
# error happens
print ffi.errno

ffi.errno: the value of errno received from the most recent C call in this thread, and passed to the following C call, is available via reads and writes of the property ffi.errno. On Windows we also save and restore the GetLastError() value, but to access it you need to declare and call the GetLastError() function as usual.

关于python - 如何从 Python 的 CFFI 访问 errno?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30743187/

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