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 chris.jerdonek
Recipients chris.jerdonek, docs@python, eric.araujo, ezio.melotti, georg.brandl
Date 2012-11-19.00:14:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353284081.12.0.684350303879.issue16508@psf.upfronthosting.co.za>
In-reply-to
Content
This issue is to add the "object" type to the list of types documented in the language reference's standard type hierarchy and the library reference's list of built-in types:

http://docs.python.org/dev/reference/datamodel.html#the-standard-type-hierarchy
http://docs.python.org/dev/library/stdtypes.html#other-built-in-types

The constructor is documented here:

http://docs.python.org/dev/library/functions.html#object

In the documentation, it might also be worth stating explicitly which of the special methods the object type defines:

http://docs.python.org/dev/reference/datamodel.html#special-method-names

For example, object.__str__ is defined, but object.__bytes__ is not.  By doing this, users will know which special methods user-defined classes will automatically inherit.
History
Date User Action Args
2012-11-19 00:14:41chris.jerdoneksetrecipients: + chris.jerdonek, georg.brandl, ezio.melotti, eric.araujo, docs@python
2012-11-19 00:14:41chris.jerdoneksetmessageid: <1353284081.12.0.684350303879.issue16508@psf.upfronthosting.co.za>
2012-11-19 00:14:41chris.jerdoneklinkissue16508 messages
2012-11-19 00:14:40chris.jerdonekcreate