Reformulated err_badarg error message.
diff --git a/Python/errors.c b/Python/errors.c
index 84582e3..8ddde51 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -119,7 +119,7 @@
 int
 err_badarg()
 {
-	err_setstr(TypeError, "illegal argument type for built-in function");
+	err_setstr(TypeError, "illegal argument type for built-in operation");
 	return 0;
 }