]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo found by doerwalter.
authorGuido van Rossum <guido@python.org>
Mon, 1 Oct 2001 13:17:24 +0000 (13:17 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 1 Oct 2001 13:17:24 +0000 (13:17 +0000)
Objects/typeobject.c

index e5e7dcd6f427b9f8b4ac61614126fa3bad31a483..bf40951fdb9835108a93c08d6a52a898943a3235 100644 (file)
@@ -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}
 };