remove unwanted fatal() from err_badcall()
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 @@
 void
 err_badcall()
 {
-	fatal("err_badcall() called");
 	err_setstr(SystemError, "bad argument to internal function");
 }