diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-11-15 00:35:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 00:35:37 (GMT) |
commit | dc3e4350a5580bcc956312d1b20ca877d8f63215 (patch) | |
tree | e6bad39db71859742257c1f267e3785bb7bbd110 /Include/cpython | |
parent | e874c2f1986ee01f53a9d9bdf26fa6979d8a6d35 (diff) | |
download | cpython-dc3e4350a5580bcc956312d1b20ca877d8f63215.zip cpython-dc3e4350a5580bcc956312d1b20ca877d8f63215.tar.gz cpython-dc3e4350a5580bcc956312d1b20ca877d8f63215.tar.bz2 |
GH-99205: remove `_static` field from `PyThreadState` and `PyInterpreterState` (GH-99385)
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/pystate.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/cpython/pystate.h b/Include/cpython/pystate.h index 70c2342..c51542b 100644 --- a/Include/cpython/pystate.h +++ b/Include/cpython/pystate.h @@ -120,9 +120,6 @@ struct _ts { after allocation. */ int _initialized; - /* Was this thread state statically allocated? */ - int _static; - int py_recursion_remaining; int py_recursion_limit; |