summaryrefslogtreecommitdiff
path: root/Python/errors.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-10-24 19:57:45 +0000
committerFred Drake <fdrake@acm.org>2000-10-24 19:57:45 +0000
commita5e7e44440c8a86131a64c23119ec070f6c5cbeb (patch)
treed606fab30e49f24e3e45e374741b6fcd35d9a55d /Python/errors.c
parentb9fcd270f520f49fcbe85bcbc53940326f556fdf (diff)
downloadcpython-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.c2
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;
}