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: A typo in tutorial
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: falsetru, georg.brandl
Priority: normal Keywords:

Created on 2007-11-09 04:35 by falsetru, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg57295 - (view) Author: Jeong-Min Lee (falsetru) Date: 2007-11-09 04:35
In the middle of "3.1.4 Lists", it reads as follow

-----
>>> a
[]

The built-in function len() also applies to lists:

>>> len(a)
8
-----

but it should be ..
-----
>>> a
[]

The built-in function len() also applies to lists:

>>> len(a)
0
-----


http://docs.python.org/tut/node5.html#SECTION005140000000000000000
msg57299 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-11-09 13:15
Fixed in r58921.
History
Date User Action Args
2022-04-11 14:56:28adminsetgithub: 45752
2007-11-09 13:15:42georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg57299
nosy: + georg.brandl
2007-11-09 06:58:48loewissetseverity: urgent -> normal
2007-11-09 04:35:58falsetrucreate