From bf4f7b49963f7ba4dc21a532e2217f80ebd49c15 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 9 Nov 1990 15:05:53 +0000 Subject: Reformulated err_badarg error message. --- Python/errors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/errors.c') diff --git a/Python/errors.c b/Python/errors.c index 84582e3fc9..8ddde51d39 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -119,7 +119,7 @@ err_clear() 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; } -- cgit v1.2.1