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: Redundant mention of lists and tuples at start of Sequence Types documentation
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 3.1, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: MLModel, georg.brandl
Priority: normal Keywords:

Created on 2009-01-17 20:52 by MLModel, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg80046 - (view) Author: Mitchell Model (MLModel) Date: 2009-01-17 20:52
Under Built-in Types in the Library documentation the section on "Sequence 
Types" begins with the paragraph:

There are five sequence types: strings, byte sequences, byte arrays, 
lists, tuples, and range objects. (For other containers see the built-in 
dict, list, set, and tuple classes, and the collections module.)

list and tuple "classes" shouldn't be in that second sentence, should 
they? They are already in the first.
msg80088 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-01-18 10:45
Thanks, fixed in r68720.
History
Date User Action Args
2022-04-11 14:56:44adminsetgithub: 49224
2009-01-18 10:45:41georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg80088
2009-01-17 20:52:27MLModelcreate