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.

classification
Title: trite documentation issue.
Type: Stage:
Components: Documentation Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: LambertDW, georg.brandl
Priority: normal Keywords:

Created on 2009-12-11 18:08 by LambertDW, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg96269 - (view) Author: David W. Lambert (LambertDW) Date: 2009-12-11 18:08
http://docs.python.org/dev/py3k/library/stdtypes.html#index-559

Proposal: remove last sentence from

"class.__bases__
The tuple of base classes of a class object. If there are no base 
classes, this will be an empty tuple."


Reason: Sentence is a python 2 relic.  The only case is this---

>>> object.__bases__
()

Point being that documentation should be clear, puzzles left as a 
comprehension test.
msg96635 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-12-19 18:20
Agreed, removed in r76892.
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51729
2009-12-19 18:20:26georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg96635
2009-12-11 18:08:58LambertDWcreate