diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-12 16:53:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-12 16:53:38 +0100 |
commit | 621cebe81b1e6c8de10425955bf532d31ee4df42 (patch) | |
tree | d3122165505facaf5cea3bc1f8157356805419e0 /Objects/classobject.c | |
parent | bpo-33695 shutil.copytree() + os.scandir() cache (#7874) (diff) | |
download | cpython-621cebe81b1e6c8de10425955bf532d31ee4df42.tar.gz cpython-621cebe81b1e6c8de10425955bf532d31ee4df42.tar.bz2 cpython-621cebe81b1e6c8de10425955bf532d31ee4df42.zip |
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
Diffstat (limited to 'Objects/classobject.c')
-rw-r--r-- | Objects/classobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c index 93d1c67f1b4..79b0562f7d5 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -1,8 +1,8 @@ /* Class object implementation (dead now except for methods) */ #include "Python.h" -#include "pycore_mem.h" -#include "pycore_state.h" +#include "pycore_pymem.h" +#include "pycore_pystate.h" #include "structmember.h" #define TP_DESCR_GET(t) ((t)->tp_descr_get) |