summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
Diffstat (limited to 'Objects')
-rw-r--r--Objects/typeobject.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 2498b1f6fd..683484abb4 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -4341,11 +4341,10 @@ object_init_subclass(PyObject *cls, PyObject *arg)
}
PyDoc_STRVAR(object_init_subclass_doc,
-"This method is called when a class is subclassed\n"
+"This method is called when a class is subclassed.\n"
"\n"
-"Whenever a class is subclassed, this method is called. The default\n"
-"implementation does nothing. It may be overridden to extend\n"
-"subclasses.\n");
+"The default implementation does nothing. It may be\n"
+"overridden to extend subclasses.\n");
/*
from PEP 3101, this code implements: