From f1ac403c4d81590b69e3f661c5bf380b1a5e6e34 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(-) 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 @@ 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 v0.12