使用 C API 创建在 python 中声明的 python 类的实例
我想使用 C API 创建在 __main__ 范围内定义的 Python 类的实例。
例如,该类名为 MyClass
并定义如下:
class MyClass:
def __init__(self):
pass
类类型位于 __main__
范围内。
在 C 应用程序中,我想创建此类的一个实例。 这可以通过 PyInstance_New
轻松实现,因为它需要类名。 然而这个函数在Python3中不可用。
任何有关替代方案的帮助或建议都将受到赞赏。
谢谢,保罗
I want to create an instance of a Python class defined in the __main__
scope with the C API.
For example, the class is called MyClass
and is defined as follows:
class MyClass:
def __init__(self):
pass
The class type lives under __main__
scope.
Within the C application, I want to create an instance of this class. This could have been simply possible with PyInstance_New
as it takes class name. However this function is not available in Python3.
Any help or suggestions for alternatives are appreciated.
Thanks, Paul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信最简单的方法是:
当然还要加上错误检查。 完成后,您只需要 DECREF
instance
,其他两个是借用的引用。I believe the simplest approach is:
plus of course error checking. You need only DECREF
instance
when you're done with it, the other two are borrowed references.