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 falsetru
Recipients falsetru
Date 2007-11-09.04:35:57
SpamBayes Score 0.11232276
Marked as misclassified No
Message-id <1194582958.24.0.143724736066.issue1411@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2007-11-09 04:35:58falsetrusetspambayes_score: 0.112323 -> 0.11232276
recipients: + falsetru
2007-11-09 04:35:58falsetrusetspambayes_score: 0.112323 -> 0.112323
messageid: <1194582958.24.0.143724736066.issue1411@psf.upfronthosting.co.za>
2007-11-09 04:35:58falsetrulinkissue1411 messages
2007-11-09 04:35:57falsetrucreate