Commit b92dce38 authored by Fred Drake's avatar Fred Drake

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

	comes after the arguments are complete.
parent 540e13dd
......@@ -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.
......
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment