]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
err_badcall() is fatal error
authorGuido van Rossum <guido@python.org>
Mon, 28 Aug 1995 02:55:48 +0000 (02:55 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 28 Aug 1995 02:55:48 +0000 (02:55 +0000)
Python/errors.c

index 3c721b8ff647afc0581583ab10cbd2b3b5e32fb9..0249fd99e982beea6e7f127c6415c3b729521720 100644 (file)
@@ -194,5 +194,6 @@ err_errno(exc)
 void
 err_badcall()
 {
+       fatal("err_badcall() called");
        err_setstr(SystemError, "bad argument to internal function");
 }