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 steven.daprano
Recipients docs@python, reed, steven.daprano
Date 2019-09-11.09:02:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1568192554.39.0.237753294228.issue38099@roundup.psfhosted.org>
In-reply-to
Content
Oh, another point... 

Python is a little more complicated than some other languages, like Java, because Python classes (types) are themselves instances (objects) of yet another class (the so called "metaclass"). Ultimately, all classes are instances of the special metaclass called "type".

So all instances are objects, and all classes are also objects.

This is really powerful and useful, but it does sometimes make it hard to talk about things :-)
History
Date User Action Args
2019-09-11 09:02:34steven.dapranosetrecipients: + steven.daprano, docs@python, reed
2019-09-11 09:02:34steven.dapranosetmessageid: <1568192554.39.0.237753294228.issue38099@roundup.psfhosted.org>
2019-09-11 09:02:34steven.dapranolinkissue38099 messages
2019-09-11 09:02:33steven.dapranocreate