The Python C API
The C API is divided into three sections:
Include/: Limited APIInclude/cpython/: CPython implementation detailsInclude/internal/: The internal API
Information on changing the C API is available in the developer guide
| Mar | APR | May |
| 07 | ||
| 2021 | 2022 | 2023 |

Remove the Include/code.h header file. C extensions should only include the main <Python.h> header file. Python.h includes directly Include/cpython/code.h instead.
85addfb
The C API is divided into three sections:
Include/: Limited APIInclude/cpython/: CPython implementation detailsInclude/internal/: The internal APIInformation on changing the C API is available in the developer guide