commit | faa1afe2d79f9238ac78169cb1042a52fcd43eef | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Thu Feb 12 20:51:02 1998 +0000 |
committer | Fred Drake <fdrake@acm.org> | Thu Feb 12 20:51:02 1998 +0000 |
tree | 054dba92451accdb14964424c949580cd22df6ca | |
parent | f7e4793660289bd2b1d9877cc936a7e934f910c5 [diff] [blame] |
Py_Exit(status) calls exit(status), not exit(0).
diff --git a/Doc/api/api.tex b/Doc/api/api.tex index 26fc104..96d2d76 100644 --- a/Doc/api/api.tex +++ b/Doc/api/api.tex
@@ -538,7 +538,7 @@ \begin{cfuncdesc}{void}{Py_Exit}{int status} Exit the current process. This calls \code{Py_Finalize()} and then -calls the standard \C{} library function \code{exit(0)}. +calls the standard \C{} library function \code{exit(\var{status})}. \end{cfuncdesc} \begin{cfuncdesc}{int}{Py_AtExit}{void (*func) ()}