diff options
author | Pamela Fox <pamela.fox@gmail.com> | 2022-07-28 22:32:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-28 22:32:16 (GMT) |
commit | 70068b933689ffc25397970553ae3bef559173fb (patch) | |
tree | b3bc6839c8a49ec52f16b798cf440c36c20fa72b /Objects | |
parent | 03da5d0f5b8c954d9b4d2ad837518dd605e60355 (diff) | |
download | cpython-70068b933689ffc25397970553ae3bef559173fb.zip cpython-70068b933689ffc25397970553ae3bef559173fb.tar.gz cpython-70068b933689ffc25397970553ae3bef559173fb.tar.bz2 |
Fix Unicode doc and replace use of macro with PyMem_New function (GH-94088)
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 7e3caf1..ad16ada 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -2843,7 +2843,7 @@ PyUnicode_AsWideCharString(PyObject *unicode, } buflen = unicode_get_widechar_size(unicode); - buffer = (wchar_t *) PyMem_NEW(wchar_t, (buflen + 1)); + buffer = (wchar_t *) PyMem_New(wchar_t, (buflen + 1)); if (buffer == NULL) { PyErr_NoMemory(); return NULL; |