From 69f6ee6a9d250899312586d12ce429b9ecfbe3bc Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 28 Aug 1995 02:55:48 +0000 Subject: [PATCH] err_badcall() is fatal error --- Python/errors.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/errors.c b/Python/errors.c index 3c721b8ff64..0249fd99e98 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -194,5 +194,6 @@ err_errno(exc) void err_badcall() { + fatal("err_badcall() called"); err_setstr(SystemError, "bad argument to internal function"); }