diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-13 09:45:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-13 09:45:21 (GMT) |
commit | 1c4cbdf94dbb4a6ac1093d2fa7a75efa802b25bc (patch) | |
tree | e83ac1dbc56e942701d0ac73ce722a90ddedfa22 /Makefile.pre.in | |
parent | 0135598d729d01f35ce08d47160adaa095a6149f (diff) | |
download | cpython-1c4cbdf94dbb4a6ac1093d2fa7a75efa802b25bc.zip cpython-1c4cbdf94dbb4a6ac1093d2fa7a75efa802b25bc.tar.gz cpython-1c4cbdf94dbb4a6ac1093d2fa7a75efa802b25bc.tar.bz2 |
bpo-40268: Add pycore_runtime.h header file (GH-19493)
Move PyRuntimeState from pycore_pystate.h to pycore_runtime.h.
Remove _PyGILState_check_enabled macro: access directly
_PyRuntime.gilstate.check_enabled.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index ac6c2b1..45e7a83 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1103,6 +1103,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_pylifecycle.h \ $(srcdir)/Include/internal/pycore_pymem.h \ $(srcdir)/Include/internal/pycore_pystate.h \ + $(srcdir)/Include/internal/pycore_runtime.h \ $(srcdir)/Include/internal/pycore_sysmodule.h \ $(srcdir)/Include/internal/pycore_traceback.h \ $(srcdir)/Include/internal/pycore_tupleobject.h \ |