PyFile_FromFile() description: make sure the closing brace for the arguments

comes after the arguments are complete.
This commit is contained in:
Fred Drake 1998-02-25 15:40:22 +00:00
parent 540e13dd1e
commit b92dce38e7
2 changed files with 2 additions and 2 deletions

View File

@ -2169,7 +2169,7 @@ specified in \var{name} with the mode specified in \var{mode}.
\end{cfuncdesc}
\begin{cfuncdesc}{PyObject *}{PyFile_FromFile}{FILE *fp,
char *name, char *mode, int (*close})
char *name, char *mode, int (*close)}
Creates a new \code{PyFileObject} from the already-open \var{fp}.
The function \var{close} will be called when the file should be
closed.

View File

@ -2169,7 +2169,7 @@ specified in \var{name} with the mode specified in \var{mode}.
\end{cfuncdesc}
\begin{cfuncdesc}{PyObject *}{PyFile_FromFile}{FILE *fp,
char *name, char *mode, int (*close})
char *name, char *mode, int (*close)}
Creates a new \code{PyFileObject} from the already-open \var{fp}.
The function \var{close} will be called when the file should be
closed.