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/exceptions.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/exceptions.c')
-rw-r--r-- | Python/exceptions.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |