diff options
author | Guido van Rossum <guido@python.org> | 1995-03-20 15:09:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-20 15:09:40 (GMT) |
commit | cc8914fb2207dfc269aaef046a07366ff3cfc9f1 (patch) | |
tree | ed69790ccc0eac6b2418eb37f94cee4d9a60137a | |
parent | 903abee9c4ee6205720db5a10a16d79e0386cd55 (diff) | |
download | cpython-cc8914fb2207dfc269aaef046a07366ff3cfc9f1.zip cpython-cc8914fb2207dfc269aaef046a07366ff3cfc9f1.tar.gz cpython-cc8914fb2207dfc269aaef046a07366ff3cfc9f1.tar.bz2 |
fix comment about exit()
-rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 601a090..e526652 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -28,7 +28,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Various bits of information used by the interpreter are collected in module 'sys'. Function member: -- exit(sts): call (C, POSIX) exit(sts) +- exit(sts): raise SystemExit Data members: - stdin, stdout, stderr: standard file objects - modules: the table of modules (dictionary) |