diff options
| author | Victor Stinner <vstinner@redhat.com> | 2019-03-01 03:44:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-01 03:44:13 +0100 |
| commit | f684d83d86e1990784816d4b243d724e6ab8304f (patch) | |
| tree | 14d2a51e9bd7751ab89cf21363519d19e3970b28 /Include/pystate.h | |
| parent | ab71f8b793f7b42853ccd2a127ae7720adc5bcb4 (diff) | |
| download | cpython-git-f684d83d86e1990784816d4b243d724e6ab8304f.tar.gz | |
bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111)
The whole coreconfig.h header is now excluded from Py_LIMITED_API.
Move functions definitions into a new internal pycore_coreconfig.h
header.
* Move Include/coreconfig.h to Include/cpython/coreconfig.h
* coreconfig.h header is now excluded from Py_LIMITED_API
* Move functions to pycore_coreconfig.h
Diffstat (limited to 'Include/pystate.h')
| -rw-r--r-- | Include/pystate.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/pystate.h b/Include/pystate.h index a541dc8f00..a79a2e60e2 100644 --- a/Include/pystate.h +++ b/Include/pystate.h @@ -8,7 +8,6 @@ extern "C" { #endif #include "pythread.h" -#include "coreconfig.h" /* This limitation is for performance and simplicity. If needed it can be removed (with effort). */ |
