Python C API 中的静态变量
如何
class MyClass:
X = 1
Y = 2
通过 C API 公开这样的“静态”变量? PyTypeObject 上唯一看起来可以工作的变量是 tp_members,但我在 PyMemberDef 中没有看到任何标志来指示该成员应该是每个类的,而不是每个实例的。
为了更清楚一点,因为它可能会改变答案,我尝试向 Python 公开一个 C 枚举,以便
enum MyFlags {
Alpha = 0,
Beta = 1
};
可以在 Python 中访问该枚举,如下所示:
module.MyFlags.Alpha
module.MyFlags.Beta
How would one expose "static" variables like this
class MyClass:
X = 1
Y = 2
via the C API? The only variable on the PyTypeObject that looks like it would work is tp_members, but I see no flag in the PyMemberDef to indicate that the member should be per-class, not per-instance.
For a bit more clarification, since it may change the answer, I'm trying to expose a C enum to Python such that the enumeration
enum MyFlags {
Alpha = 0,
Beta = 1
};
Can be accessed in Python as:
module.MyFlags.Alpha
module.MyFlags.Beta
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将它们放入类型的 tp_dict 例如与 PyDict_SetItemString。
Just put them in the type's tp_dict e.g. with PyDict_SetItemString.