From 661ea26b3d8621ad0acc0ed2f2036ab29355f8ff Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 24 Oct 2000 19:57:45 +0000 Subject: Ka-Ping Yee : Changes to error messages to increase consistency & clarity. This (mostly) closes SourceForge patch #101839. --- Python/errors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/errors.c') 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; } -- cgit v1.2.1