| 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; |
| 402 | } |
| 403 | static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { |
| 404 | return PyThread_set_key_value(*key, value); |
| 405 | } |
nothing calls this directly
no outgoing calls
no test coverage detected