diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-01 01:57:28 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-01 01:57:28 (GMT) |
commit | 9f789e7f63809302b887a5fff8e186768c6d3a16 (patch) | |
tree | 1408057f6660cbc188d21e01aa0fd9ccf8c3bd5f /Include | |
parent | 811c2f13695049e0b84bfc6ca390bc064b601365 (diff) | |
download | cpython-9f789e7f63809302b887a5fff8e186768c6d3a16.zip cpython-9f789e7f63809302b887a5fff8e186768c6d3a16.tar.gz cpython-9f789e7f63809302b887a5fff8e186768c6d3a16.tar.bz2 |
_PyUnicode_AsKind() is *not* part of the stable ABI
Diffstat (limited to 'Include')
-rw-r--r-- | Include/unicodeobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index c41d787..bba1c23 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 |