| 6 | #include <unistd.h> |
| 7 | |
| 8 | void* |
| 9 | sleepThread(void*) |
| 10 | { |
| 11 | PyGILState_STATE gilstate = PyGILState_Ensure(); |
| 12 | sleep(1000); |
| 13 | PyGILState_Release(gilstate); |
| 14 | return NULL; |
| 15 | } |
| 16 | |
| 17 | PyObject* |
| 18 | sleep10(PyObject*, PyObject*) |
nothing calls this directly
no outgoing calls
no test coverage detected