Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-119613: Soft deprecate the Py_MEMCPY() macro
Use directly memcpy() instead.
  • Loading branch information
vstinner committed Jun 4, 2024
commit a1c06f230a7caf806e90dff0b810d1a66f413957
1 change: 1 addition & 0 deletions Include/pyport.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ typedef Py_ssize_t Py_ssize_clean_t;
# define Py_LOCAL_INLINE(type) static inline type
#endif

// Soft deprecated since Python 3.14, use memcpy() instead.
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
# define Py_MEMCPY memcpy
#endif
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Soft deprecate the :c:macro:`!Py_MEMCPY` macro: use directly ``memcpy()``
instead. Patch by Victor Stinner.