You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The C Unicode reference for PyUnicode_AsWideCharString says "Returns a buffer allocated by PyMem_Alloc()". However, a function named PyMem_Alloc does not currently exist. The function used instead is PyMem_NEW which is a macro for PyMem_New.