mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-41123: Remove Py_UNICODE_COPY() and Py_UNICODE_FILL() (GH-28887)
This commit is contained in:
parent
03ea862b8a
commit
1f316ea3b4
3 changed files with 9 additions and 13 deletions
|
@ -591,3 +591,8 @@ Removed
|
|||
* ``Py_SET_ERRNO_ON_MATH_ERROR()``
|
||||
|
||||
(Contributed by Victor Stinner in :issue:`45412`.)
|
||||
|
||||
* Remove ``Py_UNICODE_COPY()`` and ``Py_UNICODE_FILL()`` macros, deprecated
|
||||
since Python 3.3. Use ``PyUnicode_CopyCharacters()`` or ``memcpy()``
|
||||
(``wchar_t*`` string), and ``PyUnicode_Fill()`` functions instead.
|
||||
(Contributed by Victor Stinner in :issue:`41123`.)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue