mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-34523: Use _PyCoreConfig instead of globals (GH-9005)
Use the core configuration of the interpreter, rather than using global configuration variables. For example, replace Py_QuietFlag with core_config->quiet.
This commit is contained in:
parent
de42755674
commit
fbca90856d
6 changed files with 50 additions and 40 deletions
|
@ -249,7 +249,9 @@ PyAPI_FUNC(void) PyInterpreterState_Delete(PyInterpreterState *);
|
|||
PyAPI_FUNC(PyInterpreterState *) _PyInterpreterState_Get(void);
|
||||
#endif
|
||||
#ifdef Py_BUILD_CORE
|
||||
/* Macro which should only be used for performance critical code */
|
||||
/* Macro which should only be used for performance critical code.
|
||||
Need "#include "internal/pystate.h". See also _PyInterpreterState_Get()
|
||||
and _PyGILState_GetInterpreterStateUnsafe(). */
|
||||
# define _PyInterpreterState_GET_UNSAFE() (PyThreadState_GET()->interp)
|
||||
#endif
|
||||
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03070000
|
||||
|
@ -369,7 +371,9 @@ PyAPI_FUNC(int) PyGILState_Check(void);
|
|||
GILState implementation.
|
||||
|
||||
Return NULL before _PyGILState_Init() is called and after _PyGILState_Fini()
|
||||
is called. */
|
||||
is called.
|
||||
|
||||
See also _PyInterpreterState_Get() and _PyInterpreterState_GET_UNSAFE(). */
|
||||
PyAPI_FUNC(PyInterpreterState *) _PyGILState_GetInterpreterStateUnsafe(void);
|
||||
#endif /* !Py_LIMITED_API */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue