[issue1411] A typo in tutorial

2007-11-09 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r58921. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue1411] A typo in tutorial

2007-11-08 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- severity: urgent -> normal __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue1411] A typo in tutorial

2007-11-08 Thread Jeong-Min Lee
New submission from Jeong-Min Lee: 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.p