]> granicus.if.org Git - python/commitdiff
Fix name of PyObject_GetAttrString
authorGuido van Rossum <guido@python.org>
Mon, 3 Mar 1997 16:02:10 +0000 (16:02 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 3 Mar 1997 16:02:10 +0000 (16:02 +0000)
Doc/extref.tex

index 183abd06efd1449defae459fd47592b4a8d1cb81..fed12623072d694111dc0a9d8cbe8822bfa54bac 100644 (file)
@@ -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}.