summaryrefslogtreecommitdiffstats
path: root/Include/object.h
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-28 11:21:39 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-28 11:21:39 (GMT)
commit74a1deaab360e118fa5f4621fd30a4ef4cc5a53e (patch)
tree7624b50a6c6f2b46c4ca7c3a9170f3d7f161ad51 /Include/object.h
parent88eeef35d7795ec427f61e67f427dccaeabc0d11 (diff)
downloadcpython-74a1deaab360e118fa5f4621fd30a4ef4cc5a53e.zip
cpython-74a1deaab360e118fa5f4621fd30a4ef4cc5a53e.tar.gz
cpython-74a1deaab360e118fa5f4621fd30a4ef4cc5a53e.tar.bz2
#2989: add PyType_Modified().
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/object.h b/Include/object.h
index 2bdeb32..e0f5650 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -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);