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
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}