diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-31 05:38:39 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-31 05:38:39 (GMT) |
commit | e8de31cbd094bf9e909e1cb12a19c6c3ca854dd7 (patch) | |
tree | d50b3f2cb0207c1da3a02f48455b4681ecf7a5b6 /Python | |
parent | 8ce159aef570c7c85a1e3c938fbb91ed4d0a6979 (diff) | |
download | cpython-e8de31cbd094bf9e909e1cb12a19c6c3ca854dd7.zip cpython-e8de31cbd094bf9e909e1cb12a19c6c3ca854dd7.tar.gz cpython-e8de31cbd094bf9e909e1cb12a19c6c3ca854dd7.tar.bz2 |
Add a comment explaining the return value of PyOS_CheckStack().
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 8f7fc0c..48a033f 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -903,7 +903,7 @@ run_pyc_file(FILE *fp, char *filename, PyObject *globals, PyObject *locals) PyCodeObject *co; PyObject *v; long magic; - long PyImport_GetMagicNumber(); + long PyImport_GetMagicNumber(void); magic = PyMarshal_ReadLongFromFile(fp); if (magic != PyImport_GetMagicNumber()) { @@ -1201,6 +1201,9 @@ Py_FdIsInteractive(FILE *fp, char *filename) #include <malloc.h> #include <excpt.h> +/* + * Return non-zero when we run out of memory on the stack; zero otherwise. + */ int PyOS_CheckStack() { |