diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-10-02 21:51:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-02 21:51:20 (GMT) |
commit | 61691d833631fed42b86605b09e1535e3e8d40e5 (patch) | |
tree | 766d3ec48508213f7e371728b29c9cf49cdecee9 /Include/internal/pycore_pylifecycle.h | |
parent | b3e7045f8314e7b62cd95861d207fe2f97e47198 (diff) | |
download | cpython-61691d833631fed42b86605b09e1535e3e8d40e5.zip cpython-61691d833631fed42b86605b09e1535e3e8d40e5.tar.gz cpython-61691d833631fed42b86605b09e1535e3e8d40e5.tar.bz2 |
bpo-38353: Cleanup includes in the internal C API (GH-16548)
Use forward declaration of types to avoid includes in the internal C
API. Add also comment to justify other includes.
Diffstat (limited to 'Include/internal/pycore_pylifecycle.h')
-rw-r--r-- | Include/internal/pycore_pylifecycle.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Include/internal/pycore_pylifecycle.h b/Include/internal/pycore_pylifecycle.h index b0a98f5..d6f9ecc 100644 --- a/Include/internal/pycore_pylifecycle.h +++ b/Include/internal/pycore_pylifecycle.h @@ -8,8 +8,9 @@ extern "C" { # error "this header requires Py_BUILD_CORE define" #endif -#include "pycore_initconfig.h" /* _PyArgv */ -#include "pycore_pystate.h" /* _PyRuntimeState */ +/* Forward declarations */ +typedef struct _PyArgv _PyArgv; +typedef struct pyruntimestate _PyRuntimeState; /* True if the main interpreter thread exited due to an unhandled * KeyboardInterrupt exception, suggesting the user pressed ^C. */ |