[Python-checkins] r87086 - python/branches/py3k/Include/unicodeobject.h

georg.brandl python-checkins at python.org
Sun Dec 5 12:40:48 CET 2010


Author: georg.brandl
Date: Sun Dec  5 12:40:48 2010
New Revision: 87086

Log:
Take PyUnicode_TransformDecimalToASCII out of the limited API.

Modified:
   python/branches/py3k/Include/unicodeobject.h

Modified: python/branches/py3k/Include/unicodeobject.h
==============================================================================
--- python/branches/py3k/Include/unicodeobject.h	(original)
+++ python/branches/py3k/Include/unicodeobject.h	Sun Dec  5 12:40:48 2010
@@ -1231,10 +1231,12 @@
    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 ---------------------------------------------- */
 


More information about the Python-checkins mailing list