diff options
author | Guido van Rossum <guido@python.org> | 1995-09-18 21:31:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-09-18 21:31:16 (GMT) |
commit | 650ae0ab06b8654af4e95ac31a236f71a69b635f (patch) | |
tree | a1c4957ebb52578c65def50eadccb4b36de82e63 /Python/errors.c | |
parent | 9d78d8d2fbfc4517cbdcdf3ce064ef3a24afc60b (diff) | |
download | cpython-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.c | 1 |
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"); } |