summaryrefslogtreecommitdiff
path: root/Python/errors.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-09-18 21:31:16 +0000
committerGuido van Rossum <guido@python.org>1995-09-18 21:31:16 +0000
commitcd7caee131194c8529d3e79b8244e1445985896a (patch)
tree52f7df3d25d729ef567cb0a925a6d66735e57243 /Python/errors.c
parentba1b4abd48cd19c91c3766fda1b9bdcf7d43d0ba (diff)
downloadcpython-cd7caee131194c8529d3e79b8244e1445985896a.tar.gz
remove unwanted fatal() from err_badcall()
Diffstat (limited to 'Python/errors.c')
-rw-r--r--Python/errors.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c
index 0249fd99e9..3c721b8ff6 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -194,6 +194,5 @@ err_errno(exc)
void
err_badcall()
{
- fatal("err_badcall() called");
err_setstr(SystemError, "bad argument to internal function");
}