mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
gh-119613: Soft deprecate the Py_MEMCPY() macro (#120020)
Use directly memcpy() instead.
This commit is contained in:
parent
5c48eb0cc6
commit
26e5c6e835
2 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue