| 391 | return key; |
| 392 | } |
| 393 | static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { |
| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected