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 /Misc | |
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 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/C API/2020-02-12-21-38-49.bpo-35081.5tj1yC.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-02-12-21-38-49.bpo-35081.5tj1yC.rst b/Misc/NEWS.d/next/C API/2020-02-12-21-38-49.bpo-35081.5tj1yC.rst new file mode 100644 index 0000000..6be3320 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2020-02-12-21-38-49.bpo-35081.5tj1yC.rst @@ -0,0 +1,3 @@ +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. |