Issue #17162: Add PyType_GetSlot.

This commit is contained in:
Martin v. Löwis 2014-02-04 09:33:05 +01:00
parent 83bdfa08f7
commit ca7b04644c
6 changed files with 30 additions and 2 deletions

View file

@ -439,6 +439,9 @@ PyAPI_FUNC(PyObject*) PyType_FromSpec(PyType_Spec*);
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
PyAPI_FUNC(PyObject*) PyType_FromSpecWithBases(PyType_Spec*, PyObject*);
#endif
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03040000
PyAPI_FUNC(void*) PyType_GetSlot(PyTypeObject*, int);
#endif
#ifndef Py_LIMITED_API
/* The *real* layout of a type object when allocated on the heap */