Commit 024ef6f4 authored by Fred Drake's avatar Fred Drake

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

it has no such parameter.

This closes SF bug #449761.
parent 9b75dca1
...@@ -3984,8 +3984,7 @@ if given, the \function{str()} of the object is written instead of the ...@@ -3984,8 +3984,7 @@ if given, the \function{str()} of the object is written instead of the
failure; the appropriate exception will be set. failure; the appropriate exception will be set.
\end{cfuncdesc} \end{cfuncdesc}
\begin{cfuncdesc}{int}{PyFile_WriteString}{char *s, PyFileObject *p, \begin{cfuncdesc}{int}{PyFile_WriteString}{char *s, PyFileObject *p}
int flags}
Writes string \var{s} to file object \var{p}. Returns \code{0} on Writes string \var{s} to file object \var{p}. Returns \code{0} on
success or \code{-1} on failure; the appropriate exception will be success or \code{-1} on failure; the appropriate exception will be
set. set.
......
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