Remove the bogus flags parameter from the PyFile_WriteString() signature;

it has no such parameter.

This closes SF bug #449761.
This commit is contained in:
Fred Drake 2001-08-10 14:27:38 +00:00
parent 9b75dca192
commit 024ef6f493

View file

@ -3984,8 +3984,7 @@ if given, the \function{str()} of the object is written instead of the
failure; the appropriate exception will be set.
\end{cfuncdesc}
\begin{cfuncdesc}{int}{PyFile_WriteString}{char *s, PyFileObject *p,
int flags}
\begin{cfuncdesc}{int}{PyFile_WriteString}{char *s, PyFileObject *p}
Writes string \var{s} to file object \var{p}. Returns \code{0} on
success or \code{-1} on failure; the appropriate exception will be
set.