SIGN IN SIGN UP
python / cpython UNCLAIMED

The Python programming language

72137 0 37 Python

/* An extension mechanism to store arbitrary additional per-thread state.

PyThreadState_GetDict() returns a dictionary that can be used to hold such
   state; the caller should pick a unique key and store its state there.  If
   PyThreadState_GetDict() returns NULL, an exception has been raised (most
   likely MemoryError) and the caller should pass on the exception. */

PyObject *
PyThreadState_GetDict()
G
Guido van Rossum committed
ede0439cd8e53c50df8be78bef564fd585dc171d
Parent: c45cf02