summaryrefslogtreecommitdiffstats
path: root/Include/cpython
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-11-15 00:35:37 (GMT)
committerGitHub <noreply@github.com>2022-11-15 00:35:37 (GMT)
commitdc3e4350a5580bcc956312d1b20ca877d8f63215 (patch)
treee6bad39db71859742257c1f267e3785bb7bbd110 /Include/cpython
parente874c2f1986ee01f53a9d9bdf26fa6979d8a6d35 (diff)
downloadcpython-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.h3
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;