summaryrefslogtreecommitdiffstats
path: root/Include/ceval.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-22 22:23:46 (GMT)
committerGuido van Rossum <guido@python.org>1997-05-22 22:23:46 (GMT)
commit745b8cff08e105d1b612e48f3087127f7cdeecc1 (patch)
tree094a348c6ad299efd2170ec20cdecf201a586288 /Include/ceval.h
parentf1e63545483a3b4eb7d8357e8a1ed2cb048bbb00 (diff)
downloadcpython-745b8cff08e105d1b612e48f3087127f7cdeecc1.zip
cpython-745b8cff08e105d1b612e48f3087127f7cdeecc1.tar.gz
cpython-745b8cff08e105d1b612e48f3087127f7cdeecc1.tar.bz2
flushline and writestring can now return an error
Diffstat (limited to 'Include/ceval.h')
-rw-r--r--Include/ceval.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/ceval.h b/Include/ceval.h
index 64de60a..68c5977 100644
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -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));