Searched defs:tdict (Results 1 - 1 of 1) sorted by relevance

/external/python/cpython2/Modules/
H A Dthreadmodule.c284 PyObject *tdict, *ldict = NULL, *wr = NULL; local
288 tdict = PyThreadState_GetDict();
289 if (tdict == NULL) {
312 r = PyDict_SetItem(tdict, self->key, (PyObject *) dummy);
436 PyObject *tdict, *ldict, *dummy; local
438 tdict = PyThreadState_GetDict();
439 if (tdict == NULL) {
445 dummy = PyDict_GetItem(tdict, self->key);
457 PyDict_DelItem(tdict, self->key);

Completed in 114 milliseconds