(o: PyObjectLike)
| 135 | # PyAIter_Check |
| 136 | @staticmethod |
| 137 | def check(o: PyObjectLike) -> int: |
| 138 | return api_binding_base(API_FUNCS["PyAIter_Check"], _deref_maybe(o)) |
| 139 | |
| 140 | |
| 141 | class PyArg(_CallBase): |
nothing calls this directly
no test coverage detected