我正在编写一个 C 扩展,我对如何接收一个 dict 作为参数感到很困惑。由于文档没有关于如何实现这一点的任何细节,我尝试将参数解析为 Python 对象,然后将其作为字典进行操作:
PyTypeObject *dict;
if(!PyArg_ParseTuple(args, "o", &dict))
return NULL;
但是代码解析失败:
Python 2.7.2 (default, Jun 20 2012, 16:23:33)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import plotting
>>> plotting.plot({'wff':0})
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: must be impossible<bad format char>, not dict
据我从错误消息中可以理解,格式 char 是错误的(我认为“o”应该代表任何 Python 对象)。
将 Python dict 解析为 C 指针的最佳方法是什么?我正在浏览文档,但我没有找到与此类似的任何内容。
谢谢你。