summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-03-20 15:09:40 (GMT)
committerGuido van Rossum <guido@python.org>1995-03-20 15:09:40 (GMT)
commitcc8914fb2207dfc269aaef046a07366ff3cfc9f1 (patch)
treeed69790ccc0eac6b2418eb37f94cee4d9a60137a /Python
parent903abee9c4ee6205720db5a10a16d79e0386cd55 (diff)
downloadcpython-cc8914fb2207dfc269aaef046a07366ff3cfc9f1.zip
cpython-cc8914fb2207dfc269aaef046a07366ff3cfc9f1.tar.gz
cpython-cc8914fb2207dfc269aaef046a07366ff3cfc9f1.tar.bz2
fix comment about exit()
Diffstat (limited to 'Python')
-rw-r--r--Python/sysmodule.c2
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)