| 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 | } |
| 406 | static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { |
| 407 | return PyThread_get_key_value(*key); |
| 408 | } |
nothing calls this directly
no outgoing calls
no test coverage detected