Commit d016e45f authored by Guido van Rossum's avatar Guido van Rossum

Fix typo found by doerwalter.

parent 2fa69d79
...@@ -2445,7 +2445,7 @@ wrap_init(PyObject *self, PyObject *args, void *wrapped) ...@@ -2445,7 +2445,7 @@ wrap_init(PyObject *self, PyObject *args, void *wrapped)
static struct wrapperbase tab_init[] = { static struct wrapperbase tab_init[] = {
{"__init__", (wrapperfunc)wrap_init, {"__init__", (wrapperfunc)wrap_init,
"x.__init__(...) initializes x; " "x.__init__(...) initializes x; "
"see x.__type__.__doc__ for signature"}, "see x.__class__.__doc__ for signature"},
{0} {0}
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment