diff options
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |