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

@ -8,7 +8,9 @@ extern "C" {
#endif
PyAPI_FUNC(PyObject *) PySys_GetObject(const char *);
#ifndef Py_LIMITED_API
PyAPI_FUNC(PyObject *) _PySys_GetObjectId(_Py_Identifier *key);
#endif
PyAPI_FUNC(int) PySys_SetObject(const char *, PyObject *);
PyAPI_FUNC(int) _PySys_SetObjectId(_Py_Identifier *key, PyObject *);