Descriptions for PyRun_String(), PyRun_File(), and PyRun_CompileString() all
gave the return type as part of the function field and used an empty return
type field. Fixed.
Function name field for PyLong_FromString() included an asterisk at the
beginning of the function name field; removed.
diff --git a/Doc/api.tex b/Doc/api.tex
index a39e15d..b9ee79e 100644
--- a/Doc/api.tex
+++ b/Doc/api.tex
@@ -1012,13 +1012,13 @@
\begin{cfuncdesc}{struct _node *}{PyParser_SimpleParseFile}{FILE *, char *, int}
\end{cfuncdesc}
-\begin{cfuncdesc}{}{PyObject *PyRun_String}{char *, int, PyObject *, PyObject *}
+\begin{cfuncdesc}{PyObject *}{PyRun_String}{char *, int, PyObject *, PyObject *}
\end{cfuncdesc}
-\begin{cfuncdesc}{}{PyObject *PyRun_File}{FILE *, char *, int, PyObject *, PyObject *}
+\begin{cfuncdesc}{PyObject *}{PyRun_File}{FILE *, char *, int, PyObject *, PyObject *}
\end{cfuncdesc}
-\begin{cfuncdesc}{}{PyObject *Py_CompileString}{char *, char *, int}
+\begin{cfuncdesc}{PyObject *}{Py_CompileString}{char *, char *, int}
\end{cfuncdesc}
@@ -2670,7 +2670,7 @@
\end{cfuncdesc}
-\begin{cfuncdesc}{PyObject *}{*PyLong_FromString}{char *, char **, int}
+\begin{cfuncdesc}{PyObject *}{PyLong_FromString}{char *, char **, int}
\end{cfuncdesc}