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
Py_UNICODE was a typedef to wchar_t, deprecated by PEP 393 since Python 3.3
and at runtime since Python 3.13, and scheduled for removal in 3.16. Nothing
in CPython used it: the Argument Clinic converter of the same name generates
const wchar_t *, and the typedef is not part of the stable ABI.
The documentation references to it are kept, with the link suppressed, as was
done for PyWeakref_GetObject in GH-133657.
0 commit comments