From 8178a22e204f895e3c6cb09a58339ac61fe96c22 Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Mon, 9 Feb 2004 10:47:11 +0000 Subject: [PATCH] Documentation for PyDescr_NewClassMethod was missing - here's at least the function prototype. Already backported to release23-maint. --- Doc/api/concrete.tex | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index efcf2997b0..43180ccb5f 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -2362,6 +2362,11 @@ They are found in the dictionary of type objects. \versionadded{2.2} \end{cfuncdesc} +\begin{cfuncdesc}{PyObject*}{PyDescr_NewClassMethod}{PyTypeObject *type, + PyMethodDef *method} + \versionadded{2.3} +\end{cfuncdesc} + \begin{cfuncdesc}{int}{PyDescr_IsData}{PyObject *descr} Returns true if the descriptor objects \var{descr} describes a data attribute, or false if it describes a method. \var{descr} must be a -- 2.50.1