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/exceptions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/exceptions.c') diff --git a/Python/exceptions.c b/Python/exceptions.c index 6d6291ce32..a95817cf24 100644 --- a/Python/exceptions.c +++ b/Python/exceptions.c @@ -188,7 +188,7 @@ get_self(PyObject *args) /* Watch out for being called to early in the bootstrapping process */ if (PyExc_TypeError) { PyErr_SetString(PyExc_TypeError, - "unbound method must be called with class instance 1st argument"); + "unbound method must be called with instance as first argument"); } return NULL; } -- cgit v1.2.1