pyd v0.10.1 (2018-09-20T03:30:51Z)
Home
Dub
Repo
PyInterpreterState
deimos
python
pystate
_
extern (
C
)
struct
PyInterpreterState {
PyInterpreterState
*
next
;
PyThreadState
*
tstate_head
;
PyObject
*
modules
;
version(Python_3_0_Or_Later)
PyObject
*
modules_by_index
;
PyObject
*
sysdict
;
PyObject
*
builtins
;
PyObject
*
codec_search_path
;
PyObject
*
codec_search_cache
;
PyObject
*
codec_error_registry
;
version(Python_3_0_Or_Later)
int
codecs_initialized
;
version(Python_3_0_Or_Later)
int
fscodec_initialized
;
int
dlopenflags
;
version(Python_3_4_Or_Later)
PyObject
*
builtins_copy
;
version(Python_3_6_Or_Later)
PyObject
*
import_func
;
version(Python_3_5_Or_Later)
_PyFrameEvalFunction
eval_frame
;
}
Members
Variables
builtins
PyObject
*
builtins
;
_
builtins_copy
PyObject
*
builtins_copy
;
Undocumented in source.
codec_error_registry
PyObject
*
codec_error_registry
;
_
codec_search_cache
PyObject
*
codec_search_cache
;
_
codec_search_path
PyObject
*
codec_search_path
;
_
codecs_initialized
int
codecs_initialized
;
Availability: 3.*
dlopenflags
int
dlopenflags
;
_
eval_frame
_PyFrameEvalFunction
eval_frame
;
Undocumented in source.
fscodec_initialized
int
fscodec_initialized
;
Availability: 3.*
import_func
PyObject
*
import_func
;
Undocumented in source.
modules
PyObject
*
modules
;
_
modules_by_index
PyObject
*
modules_by_index
;
Availability: 3.*
next
PyInterpreterState
*
next
;
_
sysdict
PyObject
*
sysdict
;
_
tstate_head
PyThreadState
*
tstate_head
;
_
Meta
Source
See Implementation
deimos
python
pystate
aliases
PyThreadFrameGetter
Py_tracefunc
_PyFrameEvalFunction
enums
PyGILState_STATE
functions
PyGILState_Ensure
PyGILState_GetThisThreadState
PyGILState_Release
PyInterpreterState_Clear
PyInterpreterState_Delete
PyInterpreterState_Head
PyInterpreterState_New
PyInterpreterState_Next
PyInterpreterState_ThreadHead
PyState_FindModule
PyThreadState_Clear
PyThreadState_Delete
PyThreadState_DeleteCurrent
PyThreadState_GET
PyThreadState_Get
PyThreadState_GetDict
PyThreadState_New
PyThreadState_Next
PyThreadState_SetAsyncExc
PyThreadState_Swap
_PyGILState_Reinit
_PyState_AddModule
_PyThreadState_Init
_PyThreadState_Prealloc
manifest constants
MAX_CO_EXTRA_USERS
PyTrace_CALL
PyTrace_C_CALL
PyTrace_C_EXCEPTION
PyTrace_C_RETURN
PyTrace_EXCEPTION
PyTrace_LINE
PyTrace_RETURN
structs
PyInterpreterState
PyThreadState
_