Issue #19526: Exclude all new API from the stable ABI.

This commit is contained in:
Martin v. Löwis 2014-01-03 21:36:49 +01:00
parent a2924cabaf
commit 1c0689c613
14 changed files with 37 additions and 2 deletions

View file

@ -2004,10 +2004,12 @@ PyAPI_FUNC(int) PyUnicode_Compare(
PyObject *right /* Right string */
);
#ifndef Py_LIMITED_API
PyAPI_FUNC(int) _PyUnicode_CompareWithId(
PyObject *left, /* Left string */
_Py_Identifier *right /* Right identifier */
);
#endif
PyAPI_FUNC(int) PyUnicode_CompareWithASCIIString(
PyObject *left,