From: Georg Brandl Date: Sun, 5 Dec 2010 11:40:48 +0000 (+0000) Subject: Take PyUnicode_TransformDecimalToASCII out of the limited API. X-Git-Tag: v3.2b1~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b550308597ba7cbc7f564f6bfcabee4673e906bd;p=python Take PyUnicode_TransformDecimalToASCII out of the limited API. --- diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index abd286db4f..ad24066df8 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -1231,10 +1231,12 @@ PyAPI_FUNC(int) PyUnicode_EncodeDecimal( Returns a new Unicode string on success, NULL on failure. */ +#ifndef Py_LIMITED_API PyAPI_FUNC(PyObject*) PyUnicode_TransformDecimalToASCII( Py_UNICODE *s, /* Unicode buffer */ Py_ssize_t length /* Number of Py_UNICODE chars to transform */ ); +#endif /* --- File system encoding ---------------------------------------------- */