From: Guido van Rossum Date: Mon, 1 Oct 2001 13:17:24 +0000 (+0000) Subject: Fix typo found by doerwalter. X-Git-Tag: v2.2.1c1~1524 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d016e45fdb21691def79d00b41e20bd64adbc85a;p=thirdparty%2FPython%2Fcpython.git Fix typo found by doerwalter. --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index e5e7dcd6f427..bf40951fdb98 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2445,7 +2445,7 @@ wrap_init(PyObject *self, PyObject *args, void *wrapped) static struct wrapperbase tab_init[] = { {"__init__", (wrapperfunc)wrap_init, "x.__init__(...) initializes x; " - "see x.__type__.__doc__ for signature"}, + "see x.__class__.__doc__ for signature"}, {0} };