如何检查 PyObject* 是否指向 numpy.uint8 类型

发布于 2024-11-26 19:05:01 字数 139 浏览 1 评论 0原文

如何使用 Python C-API 检查 PyObject* 是否指向 numpy.uint8 等类型?

(请注意,我想检查 PyObject* 是否指向 numpy.uint8 类型,而不是检查它是否指向 numpy.uint8 类型的实例。)

How do I use the Python C-API to check if a PyObject* points to the type numpy.uint8 etc?

(Note that I want to check if the PyObject* points to the type numpy.uint8, not if it points to an instance of the type numpy.uint8.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

面犯桃花 2024-12-03 19:05:01

您可以使用 PyType_IsSubtype(child,parent) 来查看子类型是否继承父类型,但它操作于 PyTypeObject*,而不是 PyObject*

You can use PyType_IsSubtype(child, parent) to see if the child type inherits the parent, but it operates on PyTypeObject*, not PyObject*.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文