Skip to content

Commit

Permalink
pythongh-119613: Soft deprecate Py_MEMCPY() macro
Browse files Browse the repository at this point in the history
Use directly memcpy() instead.
  • Loading branch information
vstinner committed Jun 4, 2024
1 parent 61d3ab3 commit d83c6dc
Showing 1 changed file with 1 addition and 0 deletions.
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

0 comments on commit d83c6dc

Please sign in to comment.