(capsule: PyObjectLike, name: StringLike)
| 422 | # PyCapsule_IsValid |
| 423 | @staticmethod |
| 424 | def is_valid(capsule: PyObjectLike, name: StringLike) -> int: |
| 425 | return api_binding_base( |
| 426 | API_FUNCS["PyCapsule_IsValid"], _deref_maybe(capsule), make_string(name) |
| 427 | ) |
| 428 | |
| 429 | # PyCapsule_New |
| 430 | @staticmethod |
nothing calls this directly
no test coverage detected