diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2024-06-24 10:23:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 10:23:38 +0100 |
commit | 65a12c559cbc13c2c5a4aa65c76310bd8d2051a7 (patch) | |
tree | b244c6b535201b29b5e5e1ecaede6bc89ad4170f /Python/pylifecycle.c | |
parent | c38e2f64d012929168dfef7363c9e48bd1a6c731 (diff) | |
download | cpython-65a12c559cbc13c2c5a4aa65c76310bd8d2051a7.tar.gz cpython-65a12c559cbc13c2c5a4aa65c76310bd8d2051a7.zip |
gh-120834: fix type of *_iframe field in _PyGenObject_HEAD declaration (#120835)
Diffstat (limited to 'Python/pylifecycle.c')
-rw-r--r-- | Python/pylifecycle.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 3639cf67120..a7b4d7ecc7c 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -10,7 +10,6 @@ #include "pycore_exceptions.h" // _PyExc_InitTypes() #include "pycore_fileutils.h" // _Py_ResetForceASCII() #include "pycore_floatobject.h" // _PyFloat_InitTypes() -#include "pycore_genobject.h" // _PyAsyncGen_Fini() #include "pycore_global_objects_fini_generated.h" // "_PyStaticObjects_CheckRefcnt() #include "pycore_import.h" // _PyImport_BootstrapImp() #include "pycore_initconfig.h" // _PyStatus_OK() |