diff options
author | Thomas Heller <theller@ctypes.org> | 2004-02-09 10:47:11 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2004-02-09 10:47:11 (GMT) |
commit | 8178a22e204f895e3c6cb09a58339ac61fe96c22 (patch) | |
tree | 1cc37df117c8f5efa2e3bd35d5a2d04c03a52a91 /Doc | |
parent | 5de33786a90ba1fc0a2c3ed8a58a01b1dd21a522 (diff) | |
download | cpython-8178a22e204f895e3c6cb09a58339ac61fe96c22.zip cpython-8178a22e204f895e3c6cb09a58339ac61fe96c22.tar.gz cpython-8178a22e204f895e3c6cb09a58339ac61fe96c22.tar.bz2 |
Documentation for PyDescr_NewClassMethod was missing - here's at least
the function prototype.
Already backported to release23-maint.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/api/concrete.tex | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index efcf299..43180cc 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 |