From: Guido van Rossum Date: Mon, 3 Mar 1997 16:02:10 +0000 (+0000) Subject: Fix name of PyObject_GetAttrString X-Git-Tag: v1.5a1~316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d90e5b101218665c1e9a111ebf949ce84aa2ab99;p=python Fix name of PyObject_GetAttrString --- diff --git a/Doc/extref.tex b/Doc/extref.tex index 183abd06ef..fed1262307 100644 --- a/Doc/extref.tex +++ b/Doc/extref.tex @@ -80,7 +80,7 @@ From the viewpoint of of C access to Python services, we have: This function always succeeds. \end{cfuncdesc} - \begin{cfuncdesc}{PyObject*}{PyObject_AttrString}{PyObject *o, char *attr_name} + \begin{cfuncdesc}{PyObject*}{PyObject_GetAttrString}{PyObject *o, char *attr_name} Retrieve an attributed named attr_name form object o. Returns the attribute value on success, or {\NULL} on failure. This is the equivalent of the Python expression: \code{o.attr_name}.