Reformulated err_badarg error message.

This commit is contained in:
Guido van Rossum 1990-11-09 15:05:53 +00:00
parent 124967ca8c
commit f1ac403c4d

View file

@ -119,7 +119,7 @@ err_clear()
int int
err_badarg() err_badarg()
{ {
err_setstr(TypeError, "illegal argument type for built-in function"); err_setstr(TypeError, "illegal argument type for built-in operation");
return 0; return 0;
} }