From: Guido van Rossum Date: Mon, 18 Sep 1995 21:31:16 +0000 (+0000) Subject: remove unwanted fatal() from err_badcall() X-Git-Tag: v1.3~118 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=650ae0ab06b8654af4e95ac31a236f71a69b635f;p=thirdparty%2FPython%2Fcpython.git remove unwanted fatal() from err_badcall() --- diff --git a/Python/errors.c b/Python/errors.c index 0249fd99e982..3c721b8ff647 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"); }