(capsule: PyObjectLike, name: StringLike)
| 408 | # PyCapsule_GetPointer |
| 409 | @staticmethod |
| 410 | def get_pointer(capsule: PyObjectLike, name: StringLike) -> PointerLike: |
| 411 | return api_binding_base( |
| 412 | API_FUNCS["PyCapsule_GetPointer"], _deref_maybe(capsule), make_string(name) |
| 413 | ) |
| 414 | |
| 415 | # PyCapsule_Import |
| 416 | @staticmethod |
nothing calls this directly
no test coverage detected