summaryrefslogtreecommitdiffstats
path: root/Python/errors.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-09-18 21:31:16 (GMT)
committerGuido van Rossum <guido@python.org>1995-09-18 21:31:16 (GMT)
commit650ae0ab06b8654af4e95ac31a236f71a69b635f (patch)
treea1c4957ebb52578c65def50eadccb4b36de82e63 /Python/errors.c
parent9d78d8d2fbfc4517cbdcdf3ce064ef3a24afc60b (diff)
downloadcpython-650ae0ab06b8654af4e95ac31a236f71a69b635f.zip
cpython-650ae0ab06b8654af4e95ac31a236f71a69b635f.tar.gz
cpython-650ae0ab06b8654af4e95ac31a236f71a69b635f.tar.bz2
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 0249fd9..3c721b8 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");
}