diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-12 21:32:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 21:32:34 (GMT) |
commit | 45876a90e2663f12b90c2090ec3e48bd97841aae (patch) | |
tree | ece53599591dd1bdcbdf1fe0dfe507c77da4b664 /Makefile.pre.in | |
parent | 6e619c48b8e804ece9521453fc8da0640a04d5b1 (diff) | |
download | cpython-45876a90e2663f12b90c2090ec3e48bd97841aae.zip cpython-45876a90e2663f12b90c2090ec3e48bd97841aae.tar.gz cpython-45876a90e2663f12b90c2090ec3e48bd97841aae.tar.bz2 |
bpo-35081: Move bytes_methods.h to the internal C API (GH-18492)
Move the bytes_methods.h header file to the internal C API as
pycore_bytes_methods.h: it only contains private symbols (prefixed by
"_Py"), except of the PyDoc_STRVAR_shared() macro.
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 3da104b..aae93ff 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -970,7 +970,6 @@ PYTHON_HEADERS= \ $(srcdir)/Include/bltinmodule.h \ $(srcdir)/Include/boolobject.h \ $(srcdir)/Include/bytearrayobject.h \ - $(srcdir)/Include/bytes_methods.h \ $(srcdir)/Include/bytesobject.h \ $(srcdir)/Include/cellobject.h \ $(srcdir)/Include/ceval.h \ @@ -1077,6 +1076,7 @@ PYTHON_HEADERS= \ \ $(srcdir)/Include/internal/pycore_accu.h \ $(srcdir)/Include/internal/pycore_atomic.h \ + $(srcdir)/Include/internal/pycore_bytes_methods.h \ $(srcdir)/Include/internal/pycore_call.h \ $(srcdir)/Include/internal/pycore_ceval.h \ $(srcdir)/Include/internal/pycore_code.h \ |