[Python-checkins] CVS: python/dist/src/Doc/api api.tex,1.136,1.137
Fred L. Drake
fdrake@users.sourceforge.net
2001年8月10日 07:27:41 -0700
Update of /cvsroot/python/python/dist/src/Doc/api
In directory usw-pr-cvs1:/tmp/cvs-serv308/api
Modified Files:
api.tex
Log Message:
Remove the bogus flags parameter from the PyFile_WriteString() signature;
it has no such parameter.
This closes SF bug #449761.
Index: api.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/api.tex,v
retrieving revision 1.136
retrieving revision 1.137
diff -C2 -d -r1.136 -r1.137
*** api.tex 2001年08月08日 19:14:53 1.136
--- api.tex 2001年08月10日 14:27:38 1.137
***************
*** 3985,3990 ****
\end{cfuncdesc}
! \begin{cfuncdesc}{int}{PyFile_WriteString}{char *s, PyFileObject *p,
! int flags}
Writes string \var{s} to file object \var{p}. Returns \code{0} on
success or \code{-1} on failure; the appropriate exception will be
--- 3985,3989 ----
\end{cfuncdesc}
! \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