diff options
author | Guido van Rossum <guido@python.org> | 1990-11-09 15:05:53 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-11-09 15:05:53 +0000 |
commit | bf4f7b49963f7ba4dc21a532e2217f80ebd49c15 (patch) | |
tree | 1ee8800a707481958c55f5c4383ed5dcf1ee84d2 /Python/errors.c | |
parent | 22cf5beed42334fe461c33df857d794d7e573712 (diff) | |
download | cpython-bf4f7b49963f7ba4dc21a532e2217f80ebd49c15.tar.gz |
Reformulated err_badarg error message.
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 84582e3fc9..8ddde51d39 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; } |