diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-12 22:32:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 22:32:34 +0100 |
commit | 45876a90e2663f12b90c2090ec3e48bd97841aae (patch) | |
tree | ece53599591dd1bdcbdf1fe0dfe507c77da4b664 /Objects/stringlib | |
parent | 6e619c48b8e804ece9521453fc8da0640a04d5b1 (diff) | |
download | cpython-git-45876a90e2663f12b90c2090ec3e48bd97841aae.tar.gz |
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 'Objects/stringlib')
-rw-r--r-- | Objects/stringlib/ctype.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringlib/ctype.h b/Objects/stringlib/ctype.h index 843cfa22a8..9b319b07d1 100644 --- a/Objects/stringlib/ctype.h +++ b/Objects/stringlib/ctype.h @@ -2,7 +2,7 @@ # error "ctype.h only compatible with byte-wise strings" #endif -#include "bytes_methods.h" +#include "pycore_bytes_methods.h" static PyObject* stringlib_isspace(PyObject *self, PyObject *Py_UNUSED(ignored)) |