diff options
author | Fred Drake <fdrake@acm.org> | 2000-10-24 19:57:45 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-10-24 19:57:45 +0000 |
commit | a5e7e44440c8a86131a64c23119ec070f6c5cbeb (patch) | |
tree | d606fab30e49f24e3e45e374741b6fcd35d9a55d /Python/errors.c | |
parent | b9fcd270f520f49fcbe85bcbc53940326f556fdf (diff) | |
download | cpython-a5e7e44440c8a86131a64c23119ec070f6c5cbeb.tar.gz |
Ka-Ping Yee <ping@lfw.org>:
Changes to error messages to increase consistency & clarity.
This (mostly) closes SourceForge patch #101839.
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 28dfbbe3f3..3053e0027b 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -224,7 +224,7 @@ int PyErr_BadArgument(void) { PyErr_SetString(PyExc_TypeError, - "illegal argument type for built-in operation"); + "bad argument type for built-in operation"); return 0; } |