diff options
author | Nicholas Sim <nsim+github@posteo.net> | 2021-02-16 12:04:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 12:04:38 (GMT) |
commit | 17dbd4078b68db8954df6b5cdc40b786bc4ad7af (patch) | |
tree | e48e54740a78deac7d08fb72ad2a1fb15fce8cc1 /Makefile.pre.in | |
parent | 871eb4237b9be95263ca13ba8856e78344eb9eba (diff) | |
download | cpython-17dbd4078b68db8954df6b5cdc40b786bc4ad7af.zip cpython-17dbd4078b68db8954df6b5cdc40b786bc4ad7af.tar.gz cpython-17dbd4078b68db8954df6b5cdc40b786bc4ad7af.tar.bz2 |
bpo-35134, Include: Move pytime.h to cpython/pytime.h (GH-23988)
This change is backward compatible since C extension modules
must not include "pytime.h" directly, but only include "Python.h".
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 0b22bdd..0d9fdc7 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1075,7 +1075,6 @@ PYTHON_HEADERS= \ $(srcdir)/Include/pystrtod.h \ $(srcdir)/Include/pythonrun.h \ $(srcdir)/Include/pythread.h \ - $(srcdir)/Include/pytime.h \ $(srcdir)/Include/rangeobject.h \ $(srcdir)/Include/setobject.h \ $(srcdir)/Include/sliceobject.h \ @@ -1116,6 +1115,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/cpython/pymem.h \ $(srcdir)/Include/cpython/pystate.h \ $(srcdir)/Include/cpython/pythonrun.h \ + $(srcdir)/Include/cpython/pytime.h \ $(srcdir)/Include/cpython/sysmodule.h \ $(srcdir)/Include/cpython/traceback.h \ $(srcdir)/Include/cpython/tupleobject.h \ |