| 1402 | } |
| 1403 | |
| 1404 | void * |
| 1405 | F2PyCapsule_AsVoidPtr(PyObject *obj) |
| 1406 | { |
| 1407 | void *ret = PyCapsule_GetPointer(obj, NULL); |
| 1408 | if (ret == NULL) { |
| 1409 | PyErr_Clear(); |
| 1410 | } |
| 1411 | return ret; |
| 1412 | } |
| 1413 | |
| 1414 | int |
| 1415 | F2PyCapsule_Check(PyObject *ptr) |
nothing calls this directly
no outgoing calls
no test coverage detected