diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2022-11-16 17:37:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-16 17:37:29 (GMT) |
commit | 9db1e17c80217d7b18a2f44297d72acd10ee73d6 (patch) | |
tree | 4d0256b80f512133b1fb6db73a68da5bdbe22c5c /Include/internal/pycore_interp.h | |
parent | 8211cf5d287acfd815b6a7f6471cdf83dcd2bb9b (diff) | |
download | cpython-9db1e17c80217d7b18a2f44297d72acd10ee73d6.zip cpython-9db1e17c80217d7b18a2f44297d72acd10ee73d6.tar.gz cpython-9db1e17c80217d7b18a2f44297d72acd10ee73d6.tar.bz2 |
gh-81057: Move the global Dict-Related Versions to _PyRuntimeState (gh-99497)
We also move the global func version.
https://github.com/python/cpython/issues/81057
Diffstat (limited to 'Include/internal/pycore_interp.h')
-rw-r--r-- | Include/internal/pycore_interp.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Include/internal/pycore_interp.h b/Include/internal/pycore_interp.h index b7fc4b4..437bf74 100644 --- a/Include/internal/pycore_interp.h +++ b/Include/internal/pycore_interp.h @@ -14,7 +14,7 @@ extern "C" { #include "pycore_ast_state.h" // struct ast_state #include "pycore_code.h" // struct callable_cache #include "pycore_context.h" // struct _Py_context_state -#include "pycore_dict.h" // struct _Py_dict_state +#include "pycore_dict_state.h" // struct _Py_dict_state #include "pycore_exceptions.h" // struct _Py_exc_state #include "pycore_floatobject.h" // struct _Py_float_state #include "pycore_genobject.h" // struct _Py_async_gen_state @@ -171,8 +171,6 @@ struct _is { // Initialized to _PyEval_EvalFrameDefault(). _PyFrameEvalFunction eval_frame; - PyDict_WatchCallback dict_watchers[DICT_MAX_WATCHERS]; - Py_ssize_t co_extra_user_count; freefunc co_extra_freefuncs[MAX_CO_EXTRA_USERS]; |