This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients cheryl.sabella, docs@python, martin.panter, r.david.murray, serhiy.storchaka, terry.reedy
Date 2018-02-12.00:22:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1518394951.68.0.467229070634.issue20285@psf.upfronthosting.co.za>
In-reply-to
Content
Reponses on the pydev thread, which include 3 other coredevs:

"a base for all classes." object entry in lib ref, function
"the ultimate base class of all other classes."  Martin Panter

object is neither a base or superclass of itself, so the first of each pair above is not quite right.

"the base class of the class heirarchy ['hierarchy']"  Steven D'Aprano
"the root of the class heirarchy"  ditto
+ quotes from Java and Ruby

Jeff Allen and Barry Warsaw like either, with BW slightly referring the first.

I was thinking about 'tree' instead of 'hierachy', but 'class tree' is wrong and 'directed acyclic graph of classes' a bit wordy.  While hierarchies are often thought of as trees, it is possible for someone to report to more than one person.

No one supported the status quo.

Martin also suggested a continuation:  "When called, it accepts no
arguments and returns a new unique and featureless object."

Even though object, unlike any other class, is primarily used as a base class rather than instance source, the latter should be included.  For other built-in classes, the summary line describes instances. I would leave out 'unique' as that could be confused with 'singleton'.


I propose the following, which follows general docstring format, but describes the class instead of instances in the summary line.

"The base class of the class hierarchy.

When called, it accepts no arguments and returns a new featureless instance that has no instance attributes and cannot be given any."

Passing arguments to object and trying to add attributes to object instances are two common beginner mistakes.
History
Date User Action Args
2018-02-12 00:22:31terry.reedysetrecipients: + terry.reedy, r.david.murray, docs@python, martin.panter, serhiy.storchaka, cheryl.sabella
2018-02-12 00:22:31terry.reedysetmessageid: <1518394951.68.0.467229070634.issue20285@psf.upfronthosting.co.za>
2018-02-12 00:22:31terry.reedylinkissue20285 messages
2018-02-12 00:22:31terry.reedycreate