什么' ml'在PyMethodDef中代表什么?

时间:2014-11-05 21:11:10

标签: python python-internals

PyMethodDef C结构有几个以' ml'为前缀的字段。什么' ml'代表什么?

https://docs.python.org/2/c-api/structures.html#c.PyMethodDef

1 个答案:

答案 0 :(得分:2)

经过大量的谷歌搜索,我发现another stack question间接回答了你的问题。

也就是说,ml代表 M 结节 L oading。

Some people甚至将其进一步分解为 m odu l e,与module_method一样。

链接堆栈问题的完整答案绝对值得一读!