From: Victor Stinner Date: Sat, 1 Oct 2011 01:57:28 +0000 (+0200) Subject: _PyUnicode_AsKind() is *not* part of the stable ABI X-Git-Tag: v3.3.0a1~1410^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f789e7f63809302b887a5fff8e186768c6d3a16;p=python _PyUnicode_AsKind() is *not* part of the stable ABI --- diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index c41d7871c8..bba1c23f98 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -795,7 +795,9 @@ PyAPI_FUNC(wchar_t*) PyUnicode_AsWideCharString( Py_ssize_t *size /* number of characters of the result */ ); +#ifndef Py_LIMITED_API PyAPI_FUNC(void*) _PyUnicode_AsKind(PyObject *s, unsigned int kind); +#endif #endif