mirror of
https://github.com/python/cpython.git
synced 2025-10-17 04:08:28 +00:00
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
sys_setcheckinterval() now uses a local variable to parse arguments, before writing into interp->check_interval.
This commit is contained in:
parent
2ebd3813af
commit
caba55b3b7
22 changed files with 107 additions and 93 deletions
|
@ -92,7 +92,7 @@ PyThread_init_thread(void)
|
|||
size_t
|
||||
PyThread_get_stacksize(void)
|
||||
{
|
||||
return PyThreadState_GET()->interp->pythread_stacksize;
|
||||
return _PyInterpreterState_Get()->pythread_stacksize;
|
||||
}
|
||||
|
||||
/* Only platforms defining a THREAD_SET_STACKSIZE() macro
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue