(name: StringLike, no_block: int)
| 415 | # PyCapsule_Import |
| 416 | @staticmethod |
| 417 | def import_(name: StringLike, no_block: int) -> PointerLike: |
| 418 | return api_binding_base( |
| 419 | API_FUNCS["PyCapsule_Import"], make_string(name), no_block |
| 420 | ) |
| 421 | |
| 422 | # PyCapsule_IsValid |
| 423 | @staticmethod |
nothing calls this directly
no test coverage detected