diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-03-08 22:56:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-08 22:56:36 (GMT) |
commit | 66ff374d4f353ae427c148d2a1d141d223303a82 (patch) | |
tree | fc06c37106b1ad716e163b7ea14c6d8c175b1d4f /Include/internal/pycore_runtime.h | |
parent | cbb0aa71d040022db61390380b8aebc7c04f3275 (diff) | |
download | cpython-66ff374d4f353ae427c148d2a1d141d223303a82.zip cpython-66ff374d4f353ae427c148d2a1d141d223303a82.tar.gz cpython-66ff374d4f353ae427c148d2a1d141d223303a82.tar.bz2 |
gh-100227: Move func_state.next_version to PyInterpreterState (gh-102334)
https://github.com/python/cpython/issues/100227
Diffstat (limited to 'Include/internal/pycore_runtime.h')
-rw-r--r-- | Include/internal/pycore_runtime.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/internal/pycore_runtime.h b/Include/internal/pycore_runtime.h index 2350eaa..e0e3d4a 100644 --- a/Include/internal/pycore_runtime.h +++ b/Include/internal/pycore_runtime.h @@ -13,7 +13,6 @@ extern "C" { #include "pycore_dict_state.h" // struct _Py_dict_runtime_state #include "pycore_floatobject.h" // struct _Py_float_runtime_state #include "pycore_faulthandler.h" // struct _faulthandler_runtime_state -#include "pycore_function.h" // struct _func_runtime_state #include "pycore_global_objects.h" // struct _Py_global_objects #include "pycore_import.h" // struct _import_runtime_state #include "pycore_interp.h" // PyInterpreterState @@ -155,7 +154,6 @@ typedef struct pyruntimestate { struct _Py_float_runtime_state float_state; struct _Py_unicode_runtime_state unicode_state; struct _Py_dict_runtime_state dict_state; - struct _py_func_runtime_state func_state; struct { /* Used to set PyTypeObject.tp_version_tag */ |