#2989: add PyType_Modified().

This commit is contained in:
Georg Brandl 2008-05-28 11:21:39 +00:00
parent 88eeef35d7
commit 74a1deaab3
4 changed files with 23 additions and 12 deletions

View file

@ -460,6 +460,7 @@ PyAPI_FUNC(PyObject *) PyType_GenericNew(PyTypeObject *,
PyObject *, PyObject *);
PyAPI_FUNC(PyObject *) _PyType_Lookup(PyTypeObject *, PyObject *);
PyAPI_FUNC(unsigned int) PyType_ClearCache(void);
PyAPI_FUNC(void) PyType_Modified(PyTypeObject *);
/* Generic operations on objects */
PyAPI_FUNC(int) PyObject_Print(PyObject *, FILE *, int);