diff options
author | Fred Drake <fdrake@acm.org> | 2001-08-10 14:27:38 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-08-10 14:27:38 (GMT) |
commit | 024ef6f493d3edcf121a74055ef65da869e31a5b (patch) | |
tree | af91cfcff9ed714af1fd42e42d84eb32f68a3d7e | |
parent | 9b75dca192370c26d1e50b93af67cf73866a1c96 (diff) | |
download | cpython-024ef6f493d3edcf121a74055ef65da869e31a5b.zip cpython-024ef6f493d3edcf121a74055ef65da869e31a5b.tar.gz cpython-024ef6f493d3edcf121a74055ef65da869e31a5b.tar.bz2 |
Remove the bogus flags parameter from the PyFile_WriteString() signature;
it has no such parameter.
This closes SF bug #449761.
-rw-r--r-- | Doc/api/api.tex | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/api/api.tex b/Doc/api/api.tex index e3f2232..69f0f02 100644 --- a/Doc/api/api.tex +++ b/Doc/api/api.tex @@ -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. |