From: Guido van Rossum Date: Fri, 9 Nov 1990 15:05:53 +0000 (+0000) Subject: Reformulated err_badarg error message. X-Git-Tag: v0.9.8~1117 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f1ac403c4d81590b69e3f661c5bf380b1a5e6e34;p=thirdparty%2FPython%2Fcpython.git Reformulated err_badarg error message. --- diff --git a/Python/errors.c b/Python/errors.c index 84582e3fc9f2..8ddde51d39b4 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; }