bpo-35081: Rename internal headers (GH-10275)

Rename Include/internal/ headers:

* pycore_hash.h -> pycore_pyhash.h
* pycore_lifecycle.h -> pycore_pylifecycle.h
* pycore_mem.h -> pycore_pymem.h
* pycore_state.h -> pycore_pystate.h

Add missing headers to Makefile.pre.in and PCbuild:

* pycore_condvar.h.
* pycore_hamt.h
* pycore_pyhash.h
This commit is contained in:
Victor Stinner 2018-11-12 16:53:38 +01:00 committed by GitHub
parent 19c46a4c96
commit 621cebe81b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
65 changed files with 105 additions and 98 deletions

View file

@ -2,7 +2,7 @@
/* Support for dynamic loading of extension modules */
#include "Python.h"
#include "pycore_state.h"
#include "pycore_pystate.h"
#include "importdl.h"
#include <sys/types.h>