| 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 | } |
| 409 | #endif |
| 410 | #if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) |
| 411 | #define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) |
nothing calls this directly
no outgoing calls
no test coverage detected