summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-10-01 13:17:24 (GMT)
committerGuido van Rossum <guido@python.org>2001-10-01 13:17:24 (GMT)
commitd016e45fdb21691def79d00b41e20bd64adbc85a (patch)
treea06f67399e4722c7e9c7122593e5e7eccf83a118 /Objects/typeobject.c
parent2fa69d798498eb9d716e3d8e926745e5c1519727 (diff)
downloadcpython-d016e45fdb21691def79d00b41e20bd64adbc85a.zip
cpython-d016e45fdb21691def79d00b41e20bd64adbc85a.tar.gz
cpython-d016e45fdb21691def79d00b41e20bd64adbc85a.tar.bz2
Fix typo found by doerwalter.
Diffstat (limited to 'Objects/typeobject.c')
-rw-r--r--Objects/typeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index e5e7dcd..bf40951 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}
};