Skip to content

Commit

Permalink
flushline and writestring can now return an error
Browse files Browse the repository at this point in the history
  • Loading branch information
gvanrossum committed May 22, 1997
1 parent f1e6354 commit 745b8cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Include/ceval.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PyObject *PyEval_GetOwner Py_PROTO((void));
PyObject *PyEval_GetFrame Py_PROTO((void));
int PyEval_GetRestricted Py_PROTO((void));

void Py_FlushLine Py_PROTO((void));
int Py_FlushLine Py_PROTO((void));

int Py_AddPendingCall Py_PROTO((int (*func) Py_PROTO((ANY *)), ANY *arg));
int Py_MakePendingCalls Py_PROTO((void));
Expand Down
2 changes: 1 addition & 1 deletion Include/fileobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ extern PyObject *PyFile_Name Py_PROTO((PyObject *));
extern PyObject *PyFile_GetLine Py_PROTO((PyObject *, int));
extern int PyFile_WriteObject Py_PROTO((PyObject *, PyObject *, int));
extern int PyFile_SoftSpace Py_PROTO((PyObject *, int));
extern void PyFile_WriteString Py_PROTO((char *, PyObject *));
extern int PyFile_WriteString Py_PROTO((char *, PyObject *));

#ifdef __cplusplus
}
Expand Down

0 comments on commit 745b8cf

Please sign in to comment.