| 394 | PyObject_Free(key); |
| 395 | } |
| 396 | static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { |
| 397 | return *key != Py_tss_NEEDS_INIT; |
| 398 | } |
| 399 | static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { |
| 400 | PyThread_delete_key(*key); |
| 401 | *key = Py_tss_NEEDS_INIT; |
nothing calls this directly
no outgoing calls
no test coverage detected